1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4017this.Body = body;
9 references to Body
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\BoundNode.cs (1)
656this.Visit(node.Body);
FlowAnalysis\AbstractFlowPass.cs (1)
2887VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (5)
4032if (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)) 10221this.Visit(node.Body); 11502BoundStatement body = (BoundStatement)this.Visit(node.Body); 13608BoundStatement body = (BoundStatement)this.Visit(node.Body); 16040new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
22var rewrittenBody = VisitStatement(node.Body);
Operations\CSharpOperationFactory.cs (1)
1868IOperation body = Create(boundForStatement.Body);