Skip to content

Commit 5c50671

Browse files
committed
add "lazy" prop to "VariablePresentationHint"
1 parent a58f873 commit 5c50671

File tree

8 files changed

+65
-21
lines changed

8 files changed

+65
-21
lines changed

adapter/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter",
33
"description": "Debug adapter implementation for node",
4-
"version": "1.53.0",
4+
"version": "1.54.0-pre.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -19,7 +19,7 @@
1919
"typings": "./lib/main",
2020
"dependencies": {
2121
"mkdirp": "^1.0.4",
22-
"@vscode/debugprotocol": "1.53.0"
22+
"@vscode/debugprotocol": "1.54.0-pre.1"
2323
},
2424
"devDependencies": {
2525
"@types/mkdirp": "^1.0.2",

debugProtocol.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3573,6 +3573,10 @@
35733573
"description": "Visibility of variable. Before introducing additional values, try to use the listed values.",
35743574
"type": "string",
35753575
"_enum": [ "public", "private", "protected", "internal", "final" ]
3576+
},
3577+
"lazy": {
3578+
"description": "If true clients can present the variable with a UI that supports a specific gesture to trigger its evaluation.",
3579+
"type": "boolean"
35763580
}
35773581
}
35783582
},

protocol/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugprotocol",
33
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
4-
"version": "1.53.0",
4+
"version": "1.54.0-pre.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

protocol/src/debugProtocol.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2004,6 +2004,8 @@ export module DebugProtocol {
20042004
Values: 'public', 'private', 'protected', 'internal', 'final', etc.
20052005
*/
20062006
visibility?: 'public' | 'private' | 'protected' | 'internal' | 'final' | string;
2007+
/** If true clients can present the variable with a UI that supports a specific gesture to trigger its evaluation. */
2008+
lazy?: boolean;
20072009
}
20082010

20092011
/** Properties of a breakpoint location returned from the 'breakpointLocations' request. */

testSupport/package-lock.json

Lines changed: 43 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testSupport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vscode/debugadapter-testsupport",
33
"description": "Npm module with mocha test support for Visual Studio Code debug adapters",
4-
"version": "1.51.0",
4+
"version": "1.54.0-pre.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -14,7 +14,7 @@
1414
"main": "./lib/main.js",
1515
"typings": "./lib/main",
1616
"dependencies": {
17-
"@vscode/debugprotocol": "1.51.0"
17+
"@vscode/debugprotocol": "1.54.0-pre.1"
1818
},
1919
"devDependencies": {
2020
"@types/node": "14.x",

0 commit comments

Comments
 (0)