Interface DebugVisualizationContext

interface DebugVisualizationContext {
    containerId?: number;
    frameId?: number;
    session: DebugSession;
    threadId: number;
    variable: any;
}

Properties

containerId?: number

The Debug Adapter Protocol variable reference the type (such as a scope or another variable) that contained this one. Empty for variables that came from user evaluations in the Debug Console.

frameId?: number

The ID of the Debug Adapter Protocol StackFrame in which the variable was found, for variables that came from scopes in a stack frame.

session: DebugSession

The debug session the variable belongs to.

threadId: number

The ID of the Debug Adapter Protocol Thread in which the variable was found.

variable: any

The Debug Adapter Protocol Variable to be visualized.