1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3898this.Body = body;
10 references to Body
Microsoft.CodeAnalysis.CSharp (10)
BoundTree\BoundNode.cs (1)
594this.Visit(node.Body);
FlowAnalysis\AbstractFlowPass.cs (1)
2662VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (5)
3913if (outerLocals != this.OuterLocals || initializer != this.Initializer || innerLocals != this.InnerLocals || condition != this.Condition || increment != this.Increment || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 9816this.Visit(node.Body); 10989BoundStatement body = (BoundStatement)this.Visit(node.Body); 12958BoundStatement body = (BoundStatement)this.Visit(node.Body); 15304new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
23var rewrittenBody = VisitStatement(node.Body);
Lowering\MethodToClassRewriter.cs (1)
180var body = (BoundStatement)this.Visit(node.Body);
Operations\CSharpOperationFactory.cs (1)
1770IOperation body = Create(boundForStatement.Body);