1 write to Expressions
System.Linq.Expressions (1)
System\Linq\Expressions\NewArrayExpression.cs (1)
22
Expressions
= expressions;
24 references to Expressions
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
ExpressionTrees\Sources\ExprLambdaUtils.vb (2)
386
Dim n As Integer = node.
Expressions
.Count
389
Visit(node.
Expressions
(i))
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (1)
900
ReadOnlyCollection<Expression> expressions = node.
Expressions
;
System\Linq\Expressions\Compiler\StackSpiller.cs (2)
484
var cr = new ChildRewriter(this, stack, node.
Expressions
.Count);
485
cr.Add(node.
Expressions
);
System\Linq\Expressions\DebugViewWriter.cs (2)
792
VisitExpressions('[', node.
Expressions
);
798
VisitExpressions('{', node.
Expressions
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
342
public ReadOnlyCollection<Expression> Expressions => _node.
Expressions
;
System\Linq\Expressions\ExpressionStringBuilder.cs (2)
547
VisitExpressions('(', node.
Expressions
, ')');
552
VisitExpressions('{', node.
Expressions
, '}');
System\Linq\Expressions\ExpressionVisitor.cs (1)
423
return node.Update(Visit(node.
Expressions
));
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
2520
foreach (Expression arg in node.
Expressions
)
2526
int rank = node.
Expressions
.Count;
System\Linq\Expressions\NewArrayExpression.cs (8)
63
/// <param name="expressions">The <see cref="
Expressions
"/> property of the result.</param>
70
if (ExpressionUtils.SameElements(ref expressions!,
Expressions
))
121
/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayInit"/> and the <see cref="NewArrayExpression.
Expressions
"/> property set to the specified value.</returns>
133
/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayInit"/> and the <see cref="NewArrayExpression.
Expressions
"/> property set to the specified value.</returns>
196
/// <param name="bounds">An array that contains Expression objects to use to populate the <see cref="NewArrayExpression.
Expressions
"/> collection.</param>
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>
208
/// <param name="bounds">An <see cref="IEnumerable{T}"/> that contains <see cref="Expression"/> objects to use to populate the <see cref="NewArrayExpression.
Expressions
"/> collection.</param>
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>
System.Linq.Queryable (3)
System\Linq\EnumerableRewriter.cs (3)
109
List<Expression> exprs = new List<Expression>(na.
Expressions
.Count);
110
for (int i = 0, n = na.
Expressions
.Count; i < n; i++)
112
exprs.Add(FixupQuotedExpression(elementType, na.
Expressions
[i]));