View source
typedef SourceBreakpoint
package vscode.debugProtocol
import vscode.debugProtocol.DebugProtocol
Properties of a breakpoint passed to the setBreakpoints request.
Fields
optionallogMessage:Null<String>
If this attribute exists and is non-empty, the backend must not 'break' (stop) but log the message instead. Expressions within {} are interpolated. The attribute is only honored by a debug adapter if the capability 'supportsLogPoints' is true.
optionalhitCondition:Null<String>
An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed. The attribute is only honored by a debug adapter if the capability 'supportsHitConditionalBreakpoints' is true.
optionalcondition:Null<String>
An optional expression for conditional breakpoints. It is only honored by a debug adapter if the capability 'supportsConditionalBreakpoints' is true.