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