(response: DebugProtocol.StepInResponse, args: DebugProtocol.StepInArguments)
| 1127 | } |
| 1128 | |
| 1129 | protected stepInRequest(response: DebugProtocol.StepInResponse, args: DebugProtocol.StepInArguments): void { |
| 1130 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
| 1131 | if (!thread) { |
| 1132 | this.errorResponse(response, `No thread with id ${args.threadId}`); |
| 1133 | return; |
| 1134 | } |
| 1135 | thread.resume("Into").then(() => { |
| 1136 | this.sendResponse(response); |
| 1137 | }).catch((error) => this.errorResponse(response, `${error}`)); |
| 1138 | } |
| 1139 | |
| 1140 | protected stepOutRequest(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments): void { |
| 1141 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
nothing calls this directly
no test coverage detected