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