Skip to content

Commit 3f8d7b0

Browse files
committed
support reverse commands; fixes microsoft/vscode#91759
1 parent 4c0696e commit 3f8d7b0

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

adapter/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapter/package.json

Lines changed: 1 addition & 1 deletion
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.39.0",
4+
"version": "1.39.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

adapter/src/protocol.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,6 @@ export class ProtocolServer extends ee.EventEmitter implements VSCodeDebugAdapte
168168
request.arguments = args;
169169
}
170170

171-
if (!this._writableStream) {
172-
this._emitEvent(new Event('error', 'sendRequest: No writableStream'));
173-
return;
174-
}
175-
176171
this._send('request', request);
177172

178173
if (cb) {

0 commit comments

Comments
 (0)