1 write to ChildBoundNodes
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
976this.ChildBoundNodes = childBoundNodes;
23 references to ChildBoundNodes
Microsoft.CodeAnalysis.CSharp (23)
Binder\Binder_Conversions.cs (1)
354Debug.Assert(expr is not BoundBadExpression { ChildBoundNodes: var children } || !children.Any((child, node) => child.Syntax == node.Syntax, node));
Binder\Binder_Expressions.cs (3)
207return badExpression.Update(resultKind, badExpression.Symbols, badExpression.ChildBoundNodes, resultType); 4425Debug.Assert(result is not BoundBadExpression { ChildBoundNodes: var children } || !children.Any((child, node) => child.Syntax == node, node)); 5909return bad.Update(bad.ResultKind, bad.Symbols, bad.ChildBoundNodes, interfaceType);
BoundTree\Expression.cs (2)
49protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.ChildBoundNodes); 51ImmutableArray<BoundNode> IBoundInvalidNode.InvalidNodeChildren => StaticCast<BoundNode>.From(this.ChildBoundNodes);
FlowAnalysis\AbstractFlowPass.cs (1)
1480foreach (var child in node.ChildBoundNodes)
FlowAnalysis\DefiniteAssignment.cs (3)
1552if (!bad.ChildBoundNodes.IsDefault && bad.ChildBoundNodes.Length == 1) 1554AssignImpl(bad.ChildBoundNodes[0], value, isRef, written, read);
FlowAnalysis\NullableWalker.cs (1)
10262foreach (var child in node.ChildBoundNodes)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
106foreach (var child in node.ChildBoundNodes)
Generated\BoundNodes.xml.Generated.cs (5)
988if (resultKind != this.ResultKind || symbols != this.Symbols || childBoundNodes != this.ChildBoundNodes || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9471this.VisitList(node.ChildBoundNodes); 10519ImmutableArray<BoundExpression> childBoundNodes = this.VisitList(node.ChildBoundNodes); 12016ImmutableArray<BoundExpression> childBoundNodes = this.VisitList(node.ChildBoundNodes); 14574new TreeDumperNode("childBoundNodes", null, from x in node.ChildBoundNodes select Visit(x, null)),
Operations\CSharpOperationFactory.cs (6)
1341bool isImplicit = boundBadExpression.WasCompilerGenerated || boundBadExpression.ChildBoundNodes.Any(static (e, boundBadExpression) => e?.Syntax == boundBadExpression.Syntax, boundBadExpression); 1342var children = CreateFromArray<BoundExpression, IOperation>(boundBadExpression.ChildBoundNodes); 2205Debug.Assert(bad.ChildBoundNodes.Length == 2210value = bad.ChildBoundNodes[0]; 2217alignment = currentPosition.HasAlignment ? bad.ChildBoundNodes[1] : null; 2218format = currentPosition.HasFormat ? bad.ChildBoundNodes[^2] : null;