backport debugger
This commit is contained in:
parent
52a6752f80
commit
ea5c5fd60a
1 changed files with 1 additions and 8 deletions
|
@ -716,13 +716,6 @@ public abstract class DAPDriver<
|
||||||
throw new ExecutionException("GetVariables(long, int) is deprecated!");
|
throw new ExecutionException("GetVariables(long, int) is deprecated!");
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
public FrameVariables getFrameVariables(@NotNull LLThread thread, @NotNull LLFrame frame)
|
|
||||||
throws ExecutionException, DebuggerCommandException {
|
|
||||||
return new FrameVariables(getWrappedScopes(frame), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO registers
|
// TODO registers
|
||||||
@Override
|
@Override
|
||||||
public boolean supportsRegisters() {
|
public boolean supportsRegisters() {
|
||||||
|
@ -855,7 +848,7 @@ public abstract class DAPDriver<
|
||||||
@Override
|
@Override
|
||||||
public @NotNull List<LLValue> getVariables(@NotNull LLThread thread, @NotNull LLFrame frame)
|
public @NotNull List<LLValue> getVariables(@NotNull LLThread thread, @NotNull LLFrame frame)
|
||||||
throws ExecutionException, DebuggerCommandException {
|
throws ExecutionException, DebuggerCommandException {
|
||||||
return getFrameVariables(thread, frame).getVariables();
|
return getWrappedScopes(frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue