1 write to Body
System.Linq.Expressions (1)
System\Linq\Expressions\LoopExpression.cs (1)
17Body = body;
8 references to Body
System.Linq.Expressions (8)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (1)
149EmitExpressionAsVoid(node.Body);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
830Result body = RewriteExpression(node.Body, Stack.Empty);
System\Linq\Expressions\DebugViewWriter.cs (1)
1021Visit(node.Body);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
266public Expression Body => _node.Body;
System\Linq\Expressions\ExpressionVisitor.cs (1)
365return node.Update(VisitLabelTarget(node.BreakLabel), VisitLabelTarget(node.ContinueLabel), Visit(node.Body));
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1517CompileAsVoid(node.Body);
System\Linq\Expressions\LoopExpression.cs (2)
65/// <param name="body">The <see cref="Body"/> property of the result.</param> 69if (breakLabel == BreakLabel && continueLabel == ContinueLabel && body == Body)