INNER CODE UNIT · C#
Row
JetBrains/godot-support · debugger/debugger-worker-tests/src/ChildChunkingTests.cs:18
private abstract class Row
{
}
private sealed class Leaf : Row
{
public Leaf(int index) => Index = index;
public int Index { get; }
public override string ToString() => $"leaf({Index})";
}
private sealed class Group : Row
{
public Group(string label, IEnumerable<Row> children)
{
Label = label;
Children = children;
}