2 writes to _nodes
Microsoft.CodeAnalysis (2)
Syntax\InternalSyntax\SyntaxListBuilder.cs (2)
17
_nodes
= new ArrayElement<GreenNode?>[size];
145
Array.Resize(ref
_nodes
, newSize);
15 references to _nodes
Microsoft.CodeAnalysis (15)
Syntax\InternalSyntax\SyntaxListBuilder.cs (15)
34
return
_nodes
[index];
39
_nodes
[index].Value = value;
63
_nodes
[Count++].Value = item;
92
Debug.Assert(
_nodes
[i].Value != null);
129
_nodes
[Count].Value = null;
134
int currentSize =
_nodes
.Length;
152
if (
_nodes
[i].Value!.RawKind == kind)
166
array[i] =
_nodes
[i]!;
179
return
_nodes
[0];
181
return SyntaxList.List(
_nodes
[0]!,
_nodes
[1]!);
183
return SyntaxList.List(
_nodes
[0]!,
_nodes
[1]!,
_nodes
[2]!);
186
Array.Copy(
_nodes
, tmp, this.Count);