Skip to content

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

PropertyTypeDescriptionDefined in
idnumberFrame handle; also the variables reference of the frame's Registers scope.debugger.ts:139
functionNamestringThe function the frame is in.debugger.ts:141
pcbigintProgram counter in this frame.debugger.ts:143
inlinedbooleanWhether the frame is a function inlined into its caller (it shares the caller's registers).debugger.ts:145
sourceSourceLocation | nullWhere in the source the frame is, with debug info loaded.debugger.ts:147
epochnumberThe Debugger.epoch the frame belongs to.debugger.ts:149