mirror of https://github.com/buggins/dlangide.git
fixes for lldbmi2 debugger
This commit is contained in:
parent
cc878579e0
commit
df2ecd5b41
|
@ -780,7 +780,7 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget {
|
||||||
_threadId = threadId;
|
_threadId = threadId;
|
||||||
_frameId = frameId;
|
_frameId = frameId;
|
||||||
//command = "-stack-list-variables --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " --simple-values";
|
//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() {
|
override void onResult() {
|
||||||
DebugVariableList variables = parseVariableList(params);
|
DebugVariableList variables = parseVariableList(params);
|
||||||
|
|
Loading…
Reference in New Issue