Skip to content

Commit f0bef57

Browse files
committed
start new version 1.41
1 parent 55f5fd8 commit f0bef57

File tree

6 files changed

+26
-13
lines changed

6 files changed

+26
-13
lines changed

adapter/package-lock.json

Lines changed: 4 additions & 4 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.40.0",
4+
"version": "1.41.0-pre.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -15,7 +15,7 @@
1515
"typings": "./lib/main",
1616
"dependencies": {
1717
"mkdirp": "^0.5.1",
18-
"vscode-debugprotocol": "1.40.0"
18+
"vscode-debugprotocol": "1.41.0-pre.0"
1919
},
2020
"devDependencies": {
2121
"@types/mkdirp": "^0.5.2",

adapter/src/debugSession.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,9 @@ export class DebugSession extends ProtocolServer {
601601
} else if (request.command === 'breakpointLocations') {
602602
this.breakpointLocationsRequest(<DebugProtocol.BreakpointLocationsResponse> response, request.arguments, request);
603603

604+
} else if (request.command === 'setInstructionBreakpoints') {
605+
this.setInstructionBreakpointsRequest(<DebugProtocol.SetInstructionBreakpointsResponse> response, request.arguments, request);
606+
604607
} else {
605608
this.customRequest(request.command, <DebugProtocol.Response> response, request.arguments, request);
606609
}
@@ -695,6 +698,12 @@ export class DebugSession extends ProtocolServer {
695698
/** The debug adapter does not support the 'clipboard' context value in the 'evaluate' request. */
696699
response.body.supportsClipboardContext = false;
697700

701+
/** The debug adapter does not support stepping granularities for the stepping requests. */
702+
response.body.supportsSteppingGranularity = false;
703+
704+
/** The debug adapter does not support the 'setInstructionBreakpoints' request. */
705+
response.body.supportsInstructionBreakpoints = false;
706+
698707
this.sendResponse(response);
699708
}
700709

@@ -851,6 +860,10 @@ export class DebugSession extends ProtocolServer {
851860
this.sendResponse(response);
852861
}
853862

863+
protected setInstructionBreakpointsRequest(response: DebugProtocol.SetInstructionBreakpointsResponse, args: DebugProtocol.SetInstructionBreakpointsArguments, request?: DebugProtocol.Request): void {
864+
this.sendResponse(response);
865+
}
866+
854867
/**
855868
* Override this hook to implement custom requests.
856869
*/

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

testSupport/package-lock.json

Lines changed: 4 additions & 4 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.40.3",
4+
"version": "1.41.0-pre.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.40.0"
17+
"vscode-debugprotocol": "1.41.0-pre.0"
1818
},
1919
"devDependencies": {
2020
"@types/node": "8.9.3",

0 commit comments

Comments
 (0)