(response: DebugProtocol.ReverseContinueResponse, args: DebugProtocol.ReverseContinueArguments)
| 642 | } |
| 643 | |
| 644 | protected reverseContinueRequest(response: DebugProtocol.ReverseContinueResponse, args: DebugProtocol.ReverseContinueArguments): void { |
| 645 | this.miDebugger.continue(true).then(done => { |
| 646 | this.sendResponse(response); |
| 647 | }, msg => { |
| 648 | this.sendErrorResponse(response, 2, `Could not continue: ${msg}`); |
| 649 | }); |
| 650 | } |
| 651 | |
| 652 | protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void { |
| 653 | this.miDebugger.continue().then(done => { |