Reverse continue
This commit is contained in:
parent
3f4d38b318
commit
9b317a1a1a
2 changed files with 11 additions and 3 deletions
|
|
@ -413,6 +413,14 @@ export class MI2DebugSession extends DebugSession {
|
|||
});
|
||||
}
|
||||
|
||||
protected reverseContinueRequest(response: DebugProtocol.ReverseContinueResponse, args: DebugProtocol.ReverseContinueArguments): void {
|
||||
this.miDebugger.continue(true).then(done => {
|
||||
this.sendResponse(response);
|
||||
}, msg => {
|
||||
this.sendErrorResponse(response, 2, `Could not continue: ${msg}`);
|
||||
});
|
||||
}
|
||||
|
||||
protected continueRequest(response: DebugProtocol.ContinueResponse, args: DebugProtocol.ContinueArguments): void {
|
||||
this.miDebugger.continue().then(done => {
|
||||
this.sendResponse(response);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue