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)
1587foreach (var child in node.ChildBoundNodes)
Generated\BoundNodes.xml.Generated.cs (4)
1028if (childBoundNodes != this.ChildBoundNodes) 9826this.VisitList(node.ChildBoundNodes); 10904ImmutableArray<BoundNode> childBoundNodes = this.VisitList(node.ChildBoundNodes); 15119new TreeDumperNode("childBoundNodes", null, from x in node.ChildBoundNodes select Visit(x, null)),
Operations\CSharpOperationFactory.cs (2)
2094bool isImplicit = boundBadStatement.WasCompilerGenerated || boundBadStatement.ChildBoundNodes.Any(static (e, boundBadStatement) => e?.Syntax == boundBadStatement.Syntax, boundBadStatement); 2095var children = CreateFromArray<BoundNode, IOperation>(boundBadStatement.ChildBoundNodes);