15 references to Expressions
System.Linq.Expressions (13)
System\Linq\Expressions\BlockExpression.cs (1)
65
/// <param name="expressions">The <see cref="
Expressions
"/> property of the result.</param>
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
793
clone = Clone(node.
Expressions
, i);
System\Linq\Expressions\Compiler\VariableBinder.cs (3)
121
Visit(node.
Expressions
);
158
body = ((BlockExpression)node).
Expressions
;
189
body = block.
Expressions
;
System\Linq\Expressions\DebugViewWriter.cs (1)
980
VisitExpressions('{', ';', node.
Expressions
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
46
public ReadOnlyCollection<Expression> Expressions => _node.
Expressions
;
System\Linq\Expressions\Interpreter\LightCompiler.cs (6)
523
Expression lastExpression = node.
Expressions
[node.
Expressions
.Count - 1];
555
for (int i = 0; i < node.
Expressions
.Count - 1; i++)
557
CompileAsVoid(node.
Expressions
[i]);
1902
for (int i = 0, n = block.
Expressions
.Count; i < n; i++)
1904
Expression e = block.
Expressions
[i];
System.Linq.Queryable (2)
System\Linq\EnumerableRewriter.cs (2)
400
ReadOnlyCollection<Expression> nodes = Visit(node.
Expressions
);
402
if (type == node.
Expressions
.Last().Type)