1 write to _items
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\NodeStateTable.cs (1)
601_items = items;
8 references to _items
Microsoft.CodeAnalysis (8)
SourceGeneration\Nodes\NodeStateTable.cs (8)
588/// Represents the corresponding state of each item in <see cref="_items"/>, or contains a single state when 589/// <see cref="_items"/> is populated or when every state of <see cref="_items"/> has the same value. 627public int Count => _items.Count; 629public T GetItem(int index) => _items[index]; 633public OneOrMany<T> Items => _items; 639return new TableEntry(_items, s_allCachedEntries, anyRemoved: false); 655public TableEntry AsRemovedDueToInputRemoval() => new(_items, s_allRemovedDueToInputRemoval, anyRemoved: true);