Debugger - expand variables with variablesReference

This commit is contained in:
Matt Parker
2025-12-14 18:30:12 +10:00
parent 1efcaede54
commit 0dd6061a5f
4 changed files with 56 additions and 2 deletions

View File

@@ -166,6 +166,10 @@ public partial class RunService(ILogger<RunService> logger, RoslynAnalysis rosly
{
return await _debugger!.GetVariablesForStackFrame(frameId);
}
public async Task<List<Variable>> GetVariablesForVariablesReference(int variablesReferenceId)
{
return await _debugger!.GetVariablesForVariablesReference(variablesReferenceId);
}
private async Task<string> GetRunArguments(SharpIdeProjectModel project)
{