Implemented stepping back & changing variables

This commit is contained in:
WebFreak001 2016-07-10 16:34:12 +02:00
commit d704af2501
5 changed files with 39 additions and 14 deletions

View file

@ -31,6 +31,8 @@ class GDBDebugSession extends MI2DebugSession {
response.body.supportsConditionalBreakpoints = true;
response.body.supportsFunctionBreakpoints = true;
response.body.supportsEvaluateForHovers = true;
response.body.supportsSetVariable = true;
response.body.supportsStepBack = true;
this.sendResponse(response);
}