(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments)
| 3055 | } |
| 3056 | |
| 3057 | protected async stepOutRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> { |
| 3058 | try { |
| 3059 | const done = await this.miDebugger.stepOut(args.threadId); |
| 3060 | this.sendResponse(response); |
| 3061 | } |
| 3062 | catch (msg) { |
| 3063 | this.sendErrorResponse(response, 5, `Could not step out: ${msg}`); |
| 3064 | } |
| 3065 | } |
| 3066 | |
| 3067 | protected async nextRequest(response: DebugProtocol.NextResponse, args: DebugProtocol.NextArguments): Promise<void> { |
| 3068 | try { |