Skip to content

Commit ef6c096

Browse files
committed
publish final version 1.54.0
1 parent 5c50671 commit ef6c096

File tree

8 files changed

+30
-27
lines changed

8 files changed

+30
-27
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.54.0-pre.1",
4+
"version": "1.54.0",
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.54.0-pre.1"
22+
"@vscode/debugprotocol": "1.54.0"
2323
},
2424
"devDependencies": {
2525
"@types/mkdirp": "^1.0.2",

debugProtocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3575,7 +3575,7 @@
35753575
"_enum": [ "public", "private", "protected", "internal", "final" ]
35763576
},
35773577
"lazy": {
3578-
"description": "If true clients can present the variable with a UI that supports a specific gesture to trigger its evaluation.",
3578+
"description": "If true, clients can present the variable with a UI that supports a specific gesture to trigger its evaluation.\nThis mechanism can be used for properties that require executing code when retrieving their value and where the code execution can be expensive and/or produce side-effects. A typical example are properties based on a getter function.\nPlease note that in addition to the 'lazy' flag, the variable's 'variablesReference' must refer to a variable that will provide the value through another 'variable' request.",
35793579
"type": "boolean"
35803580
}
35813581
}

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.54.0-pre.1",
4+
"version": "1.54.0",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

protocol/src/debugProtocol.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2004,7 +2004,10 @@ 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. */
2007+
/** If true, clients can present the variable with a UI that supports a specific gesture to trigger its evaluation.
2008+
This mechanism can be used for properties that require executing code when retrieving their value and where the code execution can be expensive and/or produce side-effects. A typical example are properties based on a getter function.
2009+
Please note that in addition to the 'lazy' flag, the variable's 'variablesReference' must refer to a variable that will provide the value through another 'variable' request.
2010+
*/
20082011
lazy?: boolean;
20092012
}
20102013

testSupport/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.

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.54.0-pre.1",
4+
"version": "1.54.0",
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.54.0-pre.1"
17+
"@vscode/debugprotocol": "1.54.0"
1818
},
1919
"devDependencies": {
2020
"@types/node": "14.x",

0 commit comments

Comments
 (0)