1 write to Body
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4017this.Body = body;
9 references to Body
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\AbstractFlowPass.cs (1)
3202VisitStatement(node.Body);
Generated\BoundNodes.xml.Generated.cs (5)
4034if (locals != this.Locals || declarationsOpt != this.DeclarationsOpt || expressionOpt != this.ExpressionOpt || body != this.Body || awaitOpt != this.AwaitOpt || patternDisposeInfoOpt != this.PatternDisposeInfoOpt) 9839this.Visit(node.Body); 11014BoundStatement body = (BoundStatement)this.Visit(node.Body); 12981BoundStatement body = (BoundStatement)this.Visit(node.Body); 15339new TreeDumperNode("body", null, new TreeDumperNode[] { Visit(node.Body, null) }),
Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs (1)
36BoundStatement? rewrittenBody = VisitStatement(node.Body);
Lowering\MethodToClassRewriter.cs (1)
205var body = (BoundStatement)this.Visit(node.Body);
Operations\CSharpOperationFactory.cs (1)
1923IOperation body = Create(boundUsingStatement.Body);