1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4069
this.
Body
= body;
9 references to Body
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\BoundNode.cs (1)
712
this.Visit(node.
Body
);
FlowAnalysis\AbstractFlowPass.cs (1)
2935
VisitStatement(node.
Body
);
Generated\BoundNodes.xml.Generated.cs (5)
4084
if (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))
10461
this.Visit(node.
Body
);
11772
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
13921
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
16389
new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.
Body
, null) }),
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
22
var rewrittenBody = VisitStatement(node.
Body
);
Operations\CSharpOperationFactory.cs (1)
1943
IOperation body = Create(boundForStatement.
Body
);