Theia API Documentation v1.65.0
    Preparing search index...
    interface InstructionBreakpoint {
        condition?: string;
        enabled: boolean;
        hitCondition?: string;
        id: string;
        instructionReference: string;
        mode?: string;
        offset?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    condition?: string

    An expression for conditional breakpoints. It is only honored by a debug adapter if the corresponding capability supportsConditionalBreakpoints is true.

    enabled: boolean
    hitCondition?: string

    An expression that controls how many hits of the breakpoint are ignored. The debug adapter is expected to interpret the expression as needed. The attribute is only honored by a debug adapter if the corresponding capability supportsHitConditionalBreakpoints is true.

    id: string
    instructionReference: string

    The instruction reference of the breakpoint. This should be a memory or instruction pointer reference from an EvaluateResponse, Variable, StackFrame, GotoTarget, or Breakpoint.

    mode?: string

    The mode of this breakpoint. If defined, this must be one of the breakpointModes the debug adapter advertised in its Capabilities.

    offset?: number

    The offset from the instruction reference in bytes. This can be negative.