1 write to _items
Microsoft.CodeAnalysis (1)
SourceGeneration\Nodes\NodeStateTable.cs (1)
485
_items
= items;
8 references to _items
Microsoft.CodeAnalysis (8)
SourceGeneration\Nodes\NodeStateTable.cs (8)
472
/// Represents the corresponding state of each item in <see cref="
_items
"/>, or contains a single state when
473
/// <see cref="
_items
"/> is populated or when every state of <see cref="
_items
"/> has the same value.
510
public int Count =>
_items
.Count;
512
public T GetItem(int index) =>
_items
[index];
516
public OneOrMany<T> Items =>
_items
;
518
public TableEntry AsCached() => new(
_items
, s_allCachedEntries);
520
public TableEntry AsRemoved() => new(
_items
, s_allRemovedEntries);