1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4009this.Body = body;
10 references to Body
Microsoft.CodeAnalysis.CSharp (10)
BoundTree\BoundNode.cs (1)
656this.Visit(node.Body);
FlowAnalysis\AbstractFlowPass.cs (1)
2854VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (5)
4024if (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)) 10173this.Visit(node.Body); 11384BoundStatement body = (BoundStatement)this.Visit(node.Body); 13425BoundStatement body = (BoundStatement)this.Visit(node.Body); 15864new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
22var rewrittenBody = VisitStatement(node.Body);
Lowering\MethodToClassRewriter.cs (1)
180var body = (BoundStatement)this.Visit(node.Body);
Operations\CSharpOperationFactory.cs (1)
1877IOperation body = Create(boundForStatement.Body);