mirror of https://github.com/buggins/dlangide.git
Merge pull request #207 from and3md/fix_local_variables
Fix local variables not showing - issue #192
This commit is contained in:
commit
d3665d77fb
|
@ -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