Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IStackFrame

The type for a stack frame

Hierarchy

  • StackFrame
    • IStackFrame

Index

Properties

Optional canRestart

canRestart: boolean

Indicates whether this frame can be restarted with the 'restart' request. Clients should only use this if the debug adapter supports the 'restart' request (capability 'supportsRestartRequest' is true).

column

column: number

The column within the line. If source is null or doesn't exist, column is 0 and must be ignored.

Optional endColumn

endColumn: number

An optional end column of the range covered by the stack frame.

Optional endLine

endLine: number

An optional end line of the range covered by the stack frame.

id

id: number

An identifier for the stack frame. It must be unique across all threads. This id can be used to retrieve the scopes of the frame with the 'scopesRequest' or to restart the execution of a stackframe.

Optional instructionPointerReference

instructionPointerReference: string

Optional memory reference for the current instruction pointer in this frame.

line

line: number

The line within the file of the frame. If source is null or doesn't exist, line is 0 and must be ignored.

Optional moduleId

moduleId: string | number

The module associated with this frame, if any.

name

name: string

The name of the stack frame, typically a method name.

Optional presentationHint

presentationHint: "label" | "normal" | "subtle"

An optional hint for how to present this frame in the UI. A value of 'label' can be used to indicate that the frame is an artificial frame that is used as a visual label or separator. A value of 'subtle' can be used to change the appearance of a frame in a 'subtle' way.

Optional source

source: Source

The optional source of the frame.

Generated using TypeDoc