gdb support

This commit is contained in:
Vadim Lopatin 2015-12-11 16:10:36 +03:00
parent 95443c762d
commit b92f297dc0
1 changed files with 3 additions and 0 deletions

View File

@ -46,6 +46,9 @@ class DebuggerUIHandler : DebuggerCallback {
if (state == DebuggingState.stopped) {
_ide.logPanel.logLine("Program is stopped: " ~ msg);
_debugger.stop();
} else if (state == DebuggingState.running) {
_ide.logPanel.logLine("Program is started");
} else if (state == DebuggingState.paused) {
}
}