probe-web / @probe-web/client / index / Frame
Interface: Frame
Defined in: debugger.ts:137
A stack frame from the last stop. Only valid while epoch equals the debugger's epoch.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
id | number | Frame handle; also the variables reference of the frame's Registers scope. | debugger.ts:139 |
functionName | string | The function the frame is in. | debugger.ts:141 |
pc | bigint | Program counter in this frame. | debugger.ts:143 |
inlined | boolean | Whether the frame is a function inlined into its caller (it shares the caller's registers). | debugger.ts:145 |
source | SourceLocation | null | Where in the source the frame is, with debug info loaded. | debugger.ts:147 |
epoch | number | The Debugger.epoch the frame belongs to. | debugger.ts:149 |