mirror of https://github.com/buggins/dlangide.git
gdb support
This commit is contained in:
parent
95443c762d
commit
b92f297dc0
|
@ -46,6 +46,9 @@ class DebuggerUIHandler : DebuggerCallback {
|
||||||
if (state == DebuggingState.stopped) {
|
if (state == DebuggingState.stopped) {
|
||||||
_ide.logPanel.logLine("Program is stopped: " ~ msg);
|
_ide.logPanel.logLine("Program is stopped: " ~ msg);
|
||||||
_debugger.stop();
|
_debugger.stop();
|
||||||
|
} else if (state == DebuggingState.running) {
|
||||||
|
_ide.logPanel.logLine("Program is started");
|
||||||
|
} else if (state == DebuggingState.paused) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue