INNER CODE UNIT · C#
rows
JetBrains/godot-support · debugger/debugger-worker-tests/src/ChildChunkingTests.cs:317
var rows = factory.Split(0, 2 * ChunkSize, cts.Token).ToList();
cts.Cancel();
Assert.That(() => AsGroup(rows[0]).Children.ToList(),
Throws.InstanceOf<System.OperationCanceledException>(),
"A chunk expanded after cancellation must not keep evaluating children in the debuggee");
}
}
}
}