Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.Debugger.SetVariableValueRequest
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/mod.ts";
const { SetVariableValueRequest } = Protocol.Debugger;

Properties

scopeNumber: integer

0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.

variableName: string

Variable name.

New variable value.

callFrameId: CallFrameId

Id of callframe that holds variable.