Theia API Documentation v1.67.0
    Preparing search index...
    interface DataBreakpoint {
        enabled: boolean;
        id: string;
        info: {
            accessTypes?: DataBreakpointAccessType[];
            canPersist?: boolean;
            dataId: null | string;
            description: string;
        };
        raw: DataBreakpoint;
        source: DataBreakpointSource;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    enabled: boolean
    id: string
    info: {
        accessTypes?: DataBreakpointAccessType[];
        canPersist?: boolean;
        dataId: null | string;
        description: string;
    }

    Type Declaration

    • OptionalaccessTypes?: DataBreakpointAccessType[]

      Attribute lists the available access types for a potential data breakpoint. A UI client could surface this information.

    • OptionalcanPersist?: boolean

      Attribute indicates that a potential data breakpoint could be persisted across sessions.

    • dataId: null | string

      An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available. If a variablesReference or frameId is passed, the dataId is valid in the current suspended state, otherwise it's valid indefinitely. See 'Lifetime of Object References' in the Overview section for details. Breakpoints set using the dataId in the setDataBreakpoints request may outlive the lifetime of the associated dataId.

    • description: string

      UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available.

    raw: DataBreakpoint