1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4167
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)
3408
VisitStatement(node.
Body
);
Generated\BoundNodes.xml.Generated.cs (5)
4179
if (locals != this.Locals || declarations != this.Declarations || body != this.
Body
)
10203
this.Visit(node.
Body
);
11416
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
13457
BoundStatement body = (BoundStatement)this.Visit(node.
Body
);
15909
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)
2022
IOperation body = Create(boundFixedStatement.
Body
);