(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments)
| 1138 | } |
| 1139 | |
| 1140 | protected stepOutRequest(response: DebugProtocol.StepOutResponse, args: DebugProtocol.StepOutArguments): void { |
| 1141 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
| 1142 | if (!thread) { |
| 1143 | this.errorResponse(response, `No thread with id ${args.threadId}`); |
| 1144 | return; |
| 1145 | } |
| 1146 | thread.resume("Out").then(() => { |
| 1147 | this.sendResponse(response); |
| 1148 | }).catch((error) => this.errorResponse(response, `${error}`)); |
| 1149 | } |
| 1150 | |
| 1151 | protected restartFrameRequest(response: DebugProtocol.RestartFrameResponse, args: DebugProtocol.RestartFrameArguments): void { |
| 1152 | const frameId = args.frameId; |
nothing calls this directly
no test coverage detected