Merge pull request #207 from and3md/fix_local_variables

Fix local variables not showing - issue #192
This commit is contained in:
Vadim Lopatin 2017-04-11 16:18:15 +03:00 committed by GitHub
commit d3665d77fb
1 changed files with 1 additions and 1 deletions

View File

@ -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));