mirror of https://github.com/buggins/dlangide.git
Fix local variables parsing issue #192
This commit is contained in:
parent
8346db3031
commit
c7fa27d89b
|
@ -783,7 +783,7 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget {
|
|||
command = "-stack-list-locals --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " 1";
|
||||
}
|
||||
override void onResult() {
|
||||
DebugVariableList variables = parseVariableList(params);
|
||||
DebugVariableList variables = parseVariableList(params,"locals");
|
||||
if (variables) {
|
||||
// TODO
|
||||
Log.d("Variable list is parsed: " ~ to!string(variables));
|
||||
|
|
Loading…
Reference in New Issue