1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4056
this.
Body
= body;
9 references to Body
Microsoft.CodeAnalysis.CSharp (9)
BoundTree\Statement.cs (1)
30
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Declarations, this.
Body
);
FlowAnalysis\AbstractFlowPass.cs (1)
3216
VisitStatement(node.
Body
);
Generated\BoundNodes.xml.Generated.cs (5)
4068
if (locals != this.Locals || declarations != this.Declarations || body != this.
Body
)
9846
this.Visit(node.
Body
);
11021
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
12990
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
15349
new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.
Body
, null) }),
Lowering\LocalRewriter\LocalRewriter_FixedStatement.cs (1)
48
BoundStatement? rewrittenBody = VisitStatement(node.
Body
);
Operations\CSharpOperationFactory.cs (1)
1911
IOperation body = Create(boundFixedStatement.
Body
);