Skip to content

Commit

Permalink
Update TuiTracer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Oct 1, 2024
1 parent b751355 commit e23a52e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Draco.Compiler.Fuzzer/TuiTracer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ internal sealed class TuiTracer : Window, ITracer<SyntaxTree>
{
private sealed class InputQueueItem(SyntaxTree input, int index)
{
private readonly string asString = $"Input {index}";
public SyntaxTree Input { get; } = input;
public int Index { get; } = index;

public override string ToString() => this.asString;
private readonly string labelString = $"Input {index}";

public override string ToString() => this.labelString;
}

private sealed class FaultItem(SyntaxTree input, FaultResult fault)
Expand Down

0 comments on commit e23a52e

Please sign in to comment.