We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196fef7 commit 2824d39Copy full SHA for 2824d39
src/mockDebug.ts
@@ -347,7 +347,8 @@ export class MockDebugSession extends LoggingDebugSession {
347
// runtime supports no threads so just return a default thread.
348
response.body = {
349
threads: [
350
- new Thread(MockDebugSession.threadID, "thread 1")
+ new Thread(MockDebugSession.threadID, "thread 1"),
351
+ new Thread(MockDebugSession.threadID + 1, "thread 2"),
352
]
353
};
354
this.sendResponse(response);
0 commit comments