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