10 references to NewArrayBounds
System.Linq.Expressions (10)
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
123
case ExpressionType.
NewArrayBounds
:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
109
case ExpressionType.
NewArrayBounds
:
System\Linq\Expressions\DebugViewWriter.cs (1)
788
if (node.NodeType == ExpressionType.
NewArrayBounds
)
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
543
case ExpressionType.
NewArrayBounds
:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
2534
Debug.Assert(node.NodeType == ExpressionType.
NewArrayBounds
);
3080
case ExpressionType.
NewArrayBounds
: CompileNewArrayExpression(expr); break;
System\Linq\Expressions\NewArrayExpression.cs (4)
109
public sealed override ExpressionType NodeType => ExpressionType.
NewArrayBounds
;
197
/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
NewArrayBounds
"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns>
209
/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.
NewArrayBounds
"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns>
250
return NewArrayExpression.Make(ExpressionType.
NewArrayBounds
, arrayType, boundsList);