upde DAP 1.24.0

This commit is contained in:
Andre Weinand 2017-09-25 15:18:18 +02:00
parent a051ba51c9
commit 9279711645
3 changed files with 7 additions and 5 deletions

6
npm-shrinkwrap.json generated
View file

@ -547,9 +547,9 @@
"resolved": "git://github.com/jrieken/v8-profiler.git#5e4a336693e1d5b079c7aecd286a1abcfbc10421"
},
"vscode-debugprotocol": {
"version": "1.23.0",
"from": "vscode-debugprotocol@1.23.0",
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.23.0.tgz"
"version": "1.24.0",
"from": "vscode-debugprotocol@1.24.0",
"resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.24.0.tgz"
},
"vscode-ripgrep": {
"version": "0.0.26",

View file

@ -41,7 +41,7 @@
"nsfw": "1.0.16",
"semver": "4.3.6",
"v8-profiler": "jrieken/v8-profiler#vscode",
"vscode-debugprotocol": "1.23.0",
"vscode-debugprotocol": "1.24.0",
"vscode-ripgrep": "0.0.26",
"vscode-textmate": "^3.1.5",
"winreg": "1.2.0",

View file

@ -178,7 +178,7 @@ declare module DebugProtocol {
// event: 'breakpoint';
body: {
/** The reason for the event.
Values: 'changed', 'new', etc.
Values: 'changed', 'new', 'removed', etc.
*/
reason: string;
/** The breakpoint. */
@ -283,6 +283,8 @@ declare module DebugProtocol {
clientID?: string;
/** The ID of the debug adapter. */
adapterID: string;
/** The ISO-639 locale of the (frontend) client using this adapter, e.g. en-US or de-CH. */
locale?: string;
/** If true all line numbers are 1-based (default). */
linesStartAt1?: boolean;
/** If true all column numbers are 1-based (default). */