1 write to ChildBoundNodes
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1018
this.
ChildBoundNodes
= childBoundNodes;
9 references to ChildBoundNodes
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\Statement.cs (2)
23
protected override ImmutableArray<BoundNode?> Children => this.
ChildBoundNodes
!;
25
ImmutableArray<BoundNode> IBoundInvalidNode.InvalidNodeChildren => this.
ChildBoundNodes
;
FlowAnalysis\AbstractFlowPass.cs (1)
1587
foreach (var child in node.
ChildBoundNodes
)
Generated\BoundNodes.xml.Generated.cs (4)
1028
if (childBoundNodes != this.
ChildBoundNodes
)
9826
this.VisitList(node.
ChildBoundNodes
);
10904
ImmutableArray<BoundNode> childBoundNodes = this.VisitList(node.
ChildBoundNodes
);
15119
new TreeDumperNode("childBoundNodes", null, from x in node.
ChildBoundNodes
select Visit(x, null)),
Operations\CSharpOperationFactory.cs (2)
2094
bool isImplicit = boundBadStatement.WasCompilerGenerated || boundBadStatement.
ChildBoundNodes
.Any(static (e, boundBadStatement) => e?.Syntax == boundBadStatement.Syntax, boundBadStatement);
2095
var children = CreateFromArray<BoundNode, IOperation>(boundBadStatement.
ChildBoundNodes
);