INNER CODE UNIT · C#

ChildChunkingTests

JetBrains/godot-support · debugger/debugger-worker-tests/src/ChildChunkingTests.cs:14

    public class ChildChunkingTests
    {
        private const int ChunkSize = ChildChunking.ChunkSize;

        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)

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…