1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3813this.Body = body;
18 references to Body
Microsoft.CodeAnalysis.CSharp (18)
FlowAnalysis\AbstractFlowPass.cs (2)
2167VisitStatement(node.Body); 3127VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (10)
3841if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 3871if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 9802this.Visit(node.Body); 9808this.Visit(node.Body); 10975BoundStatement body = (BoundStatement)this.Visit(node.Body); 10981BoundStatement body = (BoundStatement)this.Visit(node.Body); 12939BoundStatement body = (BoundStatement)this.Visit(node.Body); 12947BoundStatement body = (BoundStatement)this.Visit(node.Body); 15281new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }), 15291new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_DoStatement.cs (1)
20var rewrittenBody = VisitStatement(node.Body);
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
21var rewrittenBody = VisitStatement(node.Body);
Lowering\MethodToClassRewriter.cs (2)
188BoundStatement body = (BoundStatement)this.Visit(node.Body); 196BoundStatement body = (BoundStatement)this.Visit(node.Body);
Operations\CSharpOperationFactory.cs (2)
1740IOperation body = Create(boundWhileStatement.Body); 1754IOperation body = Create(boundDoStatement.Body);