import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { CallFrame } = Protocol.Debugger;
JavaScript call frame. Array of call frames form the call stack.
Properties
callFrameId: CallFrameId
Call frame identifier. This identifier is only valid while the virtual machine is paused.
optional
functionLocation: LocationLocation in the source code.
location: Location
Location in the source code.
scopeChain: Scope[]
Scope chain for this call frame.
this: Runtime.RemoteObject
this
object for this call frame.
optional
returnValue: Runtime.RemoteObjectThe value being returned, if the function is at return point.