2 writes to _nodes
Microsoft.CodeAnalysis (2)
Syntax\SyntaxTokenListBuilder.cs (2)
17_nodes = new GreenNode?[size]; 86_nodes = tmp;
18 references to _nodes
Microsoft.CodeAnalysis (18)
Syntax\SyntaxTokenListBuilder.cs (18)
43_nodes[_count++] = item; 54list.CopyTo(offset, _nodes, _count, length); 68_nodes[_count + i] = list[offset + i].Node; 76if (requiredSize > _nodes.Length) 85Array.Copy(_nodes, tmp, _nodes.Length); 96return new SyntaxTokenList(null, _nodes[0], 0, 0); 98Debug.Assert(_nodes[0] is object); 99Debug.Assert(_nodes[1] is object); 100return new SyntaxTokenList(null, InternalSyntax.SyntaxList.List(_nodes[0]!, _nodes[1]!), 0, 0); 102Debug.Assert(_nodes[0] is object); 103Debug.Assert(_nodes[1] is object); 104Debug.Assert(_nodes[2] is object); 105return new SyntaxTokenList(null, InternalSyntax.SyntaxList.List(_nodes[0]!, _nodes[1]!, _nodes[2]!), 0, 0); 107return new SyntaxTokenList(null, InternalSyntax.SyntaxList.List(_nodes, _count), 0, 0);