on updating source file on debuging check if file exists before opening in editor

This commit is contained in:
Keywan Ghadami 2015-12-26 20:34:23 +01:00
parent 730039249e
commit 1b881f2341
1 changed files with 6 additions and 1 deletions

View File

@ -82,7 +82,12 @@ class DebuggerUIHandler : DebuggerCallback, StackFrameSelectedHandler {
if (sourceFile) {
_ide.openSourceFile(sourceFile.filename, sourceFile, true);
} else {
_ide.openSourceFile(location.fullFilePath, null, true);
import std.file;
if (exists(location.fullFilePath)) {
_ide.openSourceFile(location.fullFilePath, null, true);
} else {
Log.d("can not update location sourcefile does not exists:" ~ location.fullFilePath);
}
}
}
DSourceEdit[] editors = _ide.allOpenedEditors;