1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4128this.Body = body;
10 references to Body
Microsoft.CodeAnalysis.CSharp (10)
Binder\RefSafetyAnalysis.cs (1)
357this.Visit(node.Body);
FlowAnalysis\AbstractFlowPass.cs (1)
3394VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (5)
4145if (locals != this.Locals || declarationsOpt != this.DeclarationsOpt || expressionOpt != this.ExpressionOpt || body != this.Body || awaitOpt != this.AwaitOpt || patternDisposeInfoOpt != this.PatternDisposeInfoOpt) 10196this.Visit(node.Body); 11409BoundStatement body = (BoundStatement)this.Visit(node.Body); 13448BoundStatement body = (BoundStatement)this.Visit(node.Body); 15899new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs (1)
37BoundStatement? rewrittenBody = VisitStatement(node.Body);
Lowering\MethodToClassRewriter.cs (1)
205var body = (BoundStatement)this.Visit(node.Body);
Operations\CSharpOperationFactory.cs (1)
2034IOperation body = Create(boundUsingStatement.Body);