Merge pull request #84 from keywan-ghadami/debug-not-existing-source-file

on updating source file on debuging check if file exists before openi…
This commit is contained in:
Vadim Lopatin 2015-12-28 10:30:57 +03:00
commit f85cb7da9c
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;