vscode-debugprotocol
Advanced tools
Comparing version
@@ -60,3 +60,3 @@ /** Declaration module describing the VS Code debug protocol | ||
threadId?: number; | ||
/** Additonal information. E.g. if reason is 'exception', text contains the exception name. */ | ||
/** Additional information. E.g. if reason is 'exception', text contains the exception name. */ | ||
text?: string; | ||
@@ -127,10 +127,6 @@ }; | ||
} | ||
/** Response to Initialize request. | ||
* It contains information about the features implemented by a debug adapter. | ||
*/ | ||
/** Response to Initialize request. */ | ||
interface InitializeResponse extends Response { | ||
/** The debug adapter supports the configurationDoneRequest. */ | ||
supportsConfigurationDoneRequest?: boolean; | ||
/** The debug adapter supports a (side effect free) evaluate request for data hovers. */ | ||
supportEvaluateForHovers?: boolean; | ||
/** The capabilities of this debug adapter */ | ||
body: Capabilites; | ||
} | ||
@@ -409,2 +405,9 @@ /** ConfigurationDone request; value of command field is "configurationDone". | ||
} | ||
/** Information about the capabilities of a debug adapter. */ | ||
interface Capabilites { | ||
/** The debug adapter supports the configurationDoneRequest. */ | ||
supportsConfigurationDoneRequest?: boolean; | ||
/** The debug adapter supports a (side effect free) evaluate request for data hovers. */ | ||
supportEvaluateForHovers?: boolean; | ||
} | ||
/** A structured message object. Used to return errors from requests. */ | ||
@@ -411,0 +414,0 @@ interface Message { |
{ | ||
"name": "vscode-debugprotocol", | ||
"description": "Npm module with declarations for the Visual Studio Code debug protocol", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"author": "Microsoft Corporation", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -16,3 +16,3 @@ # VS Code Debug Protocol | ||
* Adds an optional `data` attribute to the `OutputEvent` and a `telemetry` category. | ||
* Adds a new context `hover` to the `context` attribute of the `EvaluateArguments`. | ||
* Adds a new context type `hover` to the `context` attribute of the `EvaluateArguments`. | ||
@@ -19,0 +19,0 @@ * 1.2.x: Version adds a new request: |
25905
0.39%504
0.6%