Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix: "internal error" message shown when trying to step from a state with multiple target edges #77

Open
wants to merge 1 commit into
base: debt-24-demo-materials
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/main/java/abstractdebugging/AbstractDebuggingServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,11 @@ private void stepAllThreadsIntoMatchingEdge(int primaryThreadId, EdgeInfo primar
for (var step : steps) {
ThreadState thread = step.getLeft();
EdgeInfo targetEdge = step.getRight();
NodeInfo targetNode = resultsService.lookupNode(targetEdge.nodeId());
boolean isNewThread = targetEdge instanceof FunctionCallEdgeInfo fce && fce.createsNewThread();
thread.pushFrame(new StackFrameState(targetNode, false, thread.getCurrentFrame().getLocalThreadIndex() - (isNewThread ? 1 : 0)));
if (targetEdge != null) {
NodeInfo targetNode = resultsService.lookupNode(targetEdge.nodeId());
boolean isNewThread = targetEdge instanceof FunctionCallEdgeInfo fce && fce.createsNewThread();
thread.pushFrame(new StackFrameState(targetNode, false, thread.getCurrentFrame().getLocalThreadIndex() - (isNewThread ? 1 : 0)));
}
}

onThreadsStopped("step", primaryThreadId);
Expand Down
Loading