use latest version of debug protocol

This commit is contained in:
Andre Weinand 2016-09-20 18:24:39 +02:00
parent 7afb78dec6
commit 20e2db4725

View file

@ -846,10 +846,12 @@ declare module DebugProtocol {
export interface Capabilities {
/** The debug adapter supports the configurationDoneRequest. */
supportsConfigurationDoneRequest?: boolean;
/** The debug adapter supports functionBreakpoints. */
/** The debug adapter supports function breakpoints. */
supportsFunctionBreakpoints?: boolean;
/** The debug adapter supports conditionalBreakpoints. */
/** The debug adapter supports conditional breakpoints. */
supportsConditionalBreakpoints?: boolean;
/** The debug adapter supports breakpoints that break execution after a specified number of hits. */
supportsHitConditionalBreakpoints?: boolean;
/** The debug adapter supports a (side effect free) evaluate request for data hovers. */
supportsEvaluateForHovers?: boolean;
/** Available filters for the setExceptionBreakpoints request. */
@ -1049,6 +1051,8 @@ declare module DebugProtocol {
column?: number;
/** An optional expression for conditional breakpoints. */
condition?: string;
/** An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed. */
hitCondition?: string;
}
/** Properties of a breakpoint passed to the setFunctionBreakpoints request. */
@ -1057,6 +1061,8 @@ declare module DebugProtocol {
name: string;
/** An optional expression for conditional breakpoints. */
condition?: string;
/** An optional expression that controls how many hits of the breakpoint are ignored. The backend is expected to interpret the expression as needed. */
hitCondition?: string;
}
/** Information about a Breakpoint created in setBreakpoints or setFunctionBreakpoints. */