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