1 write to Bounds
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6857
this.
Bounds
= bounds;
13 references to Bounds
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Attributes.cs (1)
1038
ImmutableArray<BoundExpression> bounds = node.
Bounds
;
CodeGen\EmitExpression.cs (1)
2153
EmitArrayIndices(expression.
Bounds
);
FlowAnalysis\AbstractFlowPass.cs (1)
2632
foreach (var expr in node.
Bounds
)
FlowAnalysis\NullableWalker.cs (1)
4140
foreach (var expr in node.
Bounds
)
Generated\BoundNodes.xml.Generated.cs (5)
6870
if (bounds != this.
Bounds
|| initializerOpt != this.InitializerOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10201
this.VisitList(node.
Bounds
);
11474
ImmutableArray<BoundExpression> bounds = this.VisitList(node.
Bounds
);
13822
ImmutableArray<BoundExpression> bounds = this.VisitList(node.
Bounds
);
16060
new TreeDumperNode("bounds", null, from x in node.
Bounds
select Visit(x, null)),
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
358
return ExprFactory("NewArrayBounds", boundType, Expressions(node.
Bounds
));
Lowering\SpillSequenceSpiller.cs (2)
741
bounds = VisitExpressionList(ref builder, node.
Bounds
);
747
bounds = VisitExpressionList(ref boundsBuilder, node.
Bounds
, forceSpill: true);
Operations\CSharpOperationFactory.cs (1)
1200
ImmutableArray<IOperation> dimensionSizes = CreateFromArray<BoundExpression, IOperation>(boundArrayCreation.
Bounds
);