1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3984this.Body = body;
16 references to Body
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\AbstractFlowPass.cs (2)
2396VisitStatement(node.Body); 3405VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (10)
4012if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4042if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 10447this.Visit(node.Body); 10453this.Visit(node.Body); 11751BoundStatement body = (BoundStatement)this.Visit(node.Body); 11760BoundStatement body = (BoundStatement)this.Visit(node.Body); 13902BoundStatement body = (BoundStatement)this.Visit(node.Body); 13910BoundStatement body = (BoundStatement)this.Visit(node.Body); 16366new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }), 16376new 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);
Operations\CSharpOperationFactory.cs (2)
1913IOperation body = Create(boundWhileStatement.Body); 1927IOperation body = Create(boundDoStatement.Body);