3 writes to Count
Microsoft.CodeAnalysis (3)
Syntax\InternalSyntax\SyntaxListBuilder.cs (3)
29this.Count = 0; 65_nodes[Count++].Value = item; 130Count--;
13 references to Count
Microsoft.CodeAnalysis (13)
Syntax\InternalSyntax\SeparatedSyntaxListBuilder.cs (1)
43return _builder!.Count;
Syntax\InternalSyntax\SyntaxListBuilder.cs (11)
79int oldCount = this.Count; 86Validate(oldCount, this.Count); 108int oldCount = this.Count; 115Validate(oldCount, this.Count); 131_nodes[Count].Value = null; 137int requiredSize = this.Count + additionalCount; 152for (int i = 0; i < Count; i++) 165var array = new GreenNode[this.Count]; 176switch (this.Count) 187var tmp = new ArrayElement<GreenNode>[this.Count]; 188Array.Copy(_nodes, tmp, this.Count);
Syntax\InternalSyntax\SyntaxListBuilder`1.cs (1)
40return _builder.Count;