StackFrame class¶
Represents a stack frame in the target process.
-
StackFrame.
frameNumber
→ integer¶ Get the frame number of this stack frame.
-
StackFrame.
instructionOffset
→ integer¶ Get the virtual address of the frame’s current instruction.
-
StackFrame.
getLocals
() → table of TypedObject¶ Get the local variables in the stack frame. This includes arguments.
-
StackFrame.
getArgs
() → table of TypedObject¶ Similar to
getLocals
except returns the arguments only.