Common
DebuggerCallFrame
Defines an interface that contains information about a single call stack frame.
Members
location DebuggerFunctionLocation
The location that was last evaluated in this frame.
listVariables(): DebuggerVariable[]
Gets the list of variables that are avaiable from this frame.
setVariableValue(variableName: string, value: any): void
Sets the given variable name to the given value.
The first parameter is a string and is the name of the variable to set.
The second parameter is a any and is the value to set in the variable.
DebuggerFunctionLocation