VS Code API
    Preparing search index...

    Class Breakpoint

    The base class of all breakpoint types.

    Hierarchy (View Summary)

    Index

    Constructors

    • Creates a new breakpoint

      Parameters

      • Optionalenabled: boolean

        Is breakpoint enabled.

      • Optionalcondition: string

        Expression for conditional breakpoints

      • OptionalhitCondition: string

        Expression that controls how many hits of the breakpoint are ignored

      • OptionallogMessage: string

        Log message to display when breakpoint is hit

      Returns Breakpoint

    Properties

    condition?: string

    An optional expression for conditional breakpoints.

    enabled: boolean

    Is breakpoint enabled.

    hitCondition?: string

    An optional expression that controls how many hits of the breakpoint are ignored.

    id: string

    The unique ID of the breakpoint.

    logMessage?: string

    An optional message that gets logged when this breakpoint is hit. Embedded expressions within {} are interpolated by the debug adapter.