fixes for lldbmi2 debugger

This commit is contained in:
Vadim Lopatin 2016-06-07 21:24:22 +03:00
parent cc878579e0
commit df2ecd5b41
1 changed files with 1 additions and 1 deletions

View File

@ -780,7 +780,7 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget {
_threadId = threadId;
_frameId = frameId;
//command = "-stack-list-variables --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " --simple-values";
command = "-stack-list-locals --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " 2";
command = "-stack-list-locals --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " 1";
}
override void onResult() {
DebugVariableList variables = parseVariableList(params);