(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments)
| 1103 | } |
| 1104 | |
| 1105 | protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void { |
| 1106 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
| 1107 | if (!thread) { |
| 1108 | this.errorResponse(response, `No thread with id ${args.threadId}`); |
| 1109 | return; |
| 1110 | } |
| 1111 | thread.resume().then(() => { |
| 1112 | response.body = { allThreadsContinued: false }; |
| 1113 | this.sendResponse(response); |
| 1114 | }).catch((error) => this.errorResponse(response, `${error}`)); |
| 1115 | } |
| 1116 | |
| 1117 | protected nextRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): void { |
| 1118 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
nothing calls this directly
no test coverage detected