8 references to SlotCountTooLarge
Microsoft.CodeAnalysis (8)
Syntax\GreenNode.cs (2)
154return count == SlotCountTooLarge ? GetSlotCount() : count; 174/// Called when <see cref="NodeFlagsAndSlotCount.SmallSlotCount"/> returns a value of <see cref="SlotCountTooLarge"/>.
Syntax\GreenNode.NodeFlagsAndSlotCount.cs (4)
37/// <see cref="SlotCountTooLarge"/> to indicate it could not be directly stored. 44Debug.Assert(shifted <= SlotCountTooLarge); 50if (value > SlotCountTooLarge) 51value = SlotCountTooLarge;
Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs (2)
36this.SlotCount = n < SlotCountTooLarge 38: SlotCountTooLarge;