7 references to Body
System.Core (7)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
994Visit(node.Body);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
261public Expression Body { get { return _node.Body; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
378return node.Update(VisitLabelTarget(node.BreakLabel), VisitLabelTarget(node.ContinueLabel), Visit(node.Body));
Microsoft\Scripting\Ast\LoopExpression.cs (2)
98/// <param name="body">The <see cref="Body" /> property of the result.</param> 101if (breakLabel == BreakLabel && continueLabel == ContinueLabel && body == Body) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (1)
148EmitExpressionAsVoid(node.Body);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
736Result body = RewriteExpression(node.Body, Stack.Empty);