2 writes to children
Microsoft.CodeAnalysis (2)
Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs (2)
18this.children = children; 25this.children = children;
12 references to children
Microsoft.CodeAnalysis (12)
Syntax\InternalSyntax\SyntaxList.WithLotsOfChildren.cs (2)
63return new WithLotsOfChildren(errors, this.GetAnnotations(), children, _childOffsets); 68return new WithLotsOfChildren(GetDiagnostics(), annotations, children, _childOffsets);
Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs (9)
31int n = children.Length; 40for (int i = 0; i < children.Length; i++) 42this.AdjustFlagsAndWidth(children[i]); 48return children.Length; 53return this.children[index]; 58Array.Copy(this.children, 0, array, offset, this.children.Length); 107return new WithManyChildren(errors, this.GetAnnotations(), children); 112return new WithManyChildren(GetDiagnostics(), annotations, children);
Syntax\SyntaxList.WithManyWeakChildren.cs (1)
30var greenChildren = green.children;