upgrade to latest debug protocol

This commit is contained in:
Andre Weinand 2016-01-22 19:04:05 +01:00
parent e66dd6523d
commit 67549346ad
3 changed files with 14 additions and 14 deletions

6
npm-shrinkwrap.json generated
View file

@ -416,9 +416,9 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"
},
"vscode-debugprotocol": {
"version": "1.3.0",
"from": "vscode-debugprotocol@>=1.3.0",
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.3.0.tgz"
"version": "1.3.1",
"from": "vscode-debugprotocol@>=1.3.1",
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.3.1.tgz"
},
"vscode-textmate": {
"version": "1.0.9",

View file

@ -26,7 +26,7 @@
"iconv-lite": "^0.4.13",
"sax": "^1.1.1",
"semver": "^4.2.0",
"vscode-debugprotocol": "^1.3.0",
"vscode-debugprotocol": "^1.3.1",
"vscode-textmate": "^1.0.9",
"native-keymap": "^0.1.2",
"weak": "^1.0.1",

View file

@ -146,7 +146,8 @@ declare module DebugProtocol {
}
/** Response to Initialize request. */
export interface InitializeResponse extends Response {
body: Capabilites;
/** The capabilities of this debug adapter */
body?: Capabilites;
}
/** ConfigurationDone request; value of command field is "configurationDone".
@ -443,6 +444,14 @@ declare module DebugProtocol {
//---- Types
/** Information about the capabilities of a debug adapter. */
export 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. */
export interface Message {
/** Unique identifier for the message. */
@ -537,13 +546,4 @@ declare module DebugProtocol {
/** The actual column of the breakpoint. */
column?: number;
}
/** Information about the features implemented by a debug adapter.
*/
export 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;
}
}