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