1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4009this.Body = body;
9 references to Body
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\BoundNode.cs (1)
656this.Visit(node.Body);
FlowAnalysis\AbstractFlowPass.cs (1)
2886VisitStatement(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)) 10211this.Visit(node.Body); 11493BoundStatement body = (BoundStatement)this.Visit(node.Body); 13600BoundStatement body = (BoundStatement)this.Visit(node.Body); 16042new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
22var rewrittenBody = VisitStatement(node.Body);
Operations\CSharpOperationFactory.cs (1)
1877IOperation body = Create(boundForStatement.Body);