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)
793clone = Clone(node.Expressions, i);
System\Linq\Expressions\Compiler\VariableBinder.cs (3)
121Visit(node.Expressions); 158body = ((BlockExpression)node).Expressions; 189body = block.Expressions;
System\Linq\Expressions\DebugViewWriter.cs (1)
980VisitExpressions('{', ';', node.Expressions);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
46public ReadOnlyCollection<Expression> Expressions => _node.Expressions;
System\Linq\Expressions\Interpreter\LightCompiler.cs (6)
523Expression lastExpression = node.Expressions[node.Expressions.Count - 1]; 555for (int i = 0; i < node.Expressions.Count - 1; i++) 557CompileAsVoid(node.Expressions[i]); 1902for (int i = 0, n = block.Expressions.Count; i < n; i++) 1904Expression e = block.Expressions[i];
System.Linq.Queryable (2)
System\Linq\EnumerableRewriter.cs (2)
400ReadOnlyCollection<Expression> nodes = Visit(node.Expressions); 402if (type == node.Expressions.Last().Type)