1 write to BlockBody
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8937this.BlockBody = blockBody;
18 references to BlockBody
Microsoft.CodeAnalysis.CSharp (18)
Binder\RefSafetyAnalysis.cs (2)
306BoundConstructorMethodBody constructorBody => constructorBody.BlockBody != node && constructorBody.ExpressionBody != node, 307BoundNonConstructorMethodBody methodBody => methodBody.BlockBody != node && methodBody.ExpressionBody != node,
Compilation\MemberSemanticModel.NodeMapBuilder.cs (1)
304this.Visit(node.BlockBody);
Compiler\MethodCompiler.cs (2)
2002body = constructor.BlockBody ?? constructor.ExpressionBody!; 2032body = nonConstructor.BlockBody ?? nonConstructor.ExpressionBody!;
FlowAnalysis\AbstractFlowPass.cs (2)
3789VisitMethodBodies(node.BlockBody, node.ExpressionBody); 3795VisitMethodBodies(node.BlockBody, node.ExpressionBody);
Generated\BoundNodes.xml.Generated.cs (9)
8958if (blockBody != this.BlockBody || expressionBody != this.ExpressionBody) 8988if (locals != this.Locals || initializer != this.Initializer || blockBody != this.BlockBody || expressionBody != this.ExpressionBody) 11079this.Visit(node.BlockBody); 11086this.Visit(node.BlockBody); 12674BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 12682BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 15413BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 17652new TreeDumperNode("blockBody", null, new TreeDumperNode[] { Visit(node.BlockBody, null) }), 17661new TreeDumperNode("blockBody", null, new TreeDumperNode[] { Visit(node.BlockBody, null) }),
Operations\CSharpOperationFactory.cs (2)
361(IBlockOperation?)Create(boundNode.BlockBody), 373(IBlockOperation?)Create(boundNode.BlockBody),