display threads at stop point

This commit is contained in:
Matt Parker
2025-08-29 21:39:17 +10:00
parent a7e05f6ebb
commit bb6d2796ca
9 changed files with 124 additions and 25 deletions

View File

@@ -147,9 +147,9 @@ public class RunService
await _debugger!.StepOver(threadId);
}
public async Task GetInfoAtStopPoint()
public async Task<ThreadsStackTraceModel> GetInfoAtStopPoint()
{
await _debugger!.GetInfoAtStopPoint();
return await _debugger!.GetInfoAtStopPoint();
}
private string GetRunArguments(SharpIdeProjectModel project)