1 write to BlockBody
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8743this.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)
1995body = constructor.BlockBody ?? constructor.ExpressionBody!; 2025body = nonConstructor.BlockBody ?? nonConstructor.ExpressionBody!;
FlowAnalysis\AbstractFlowPass.cs (2)
3731VisitMethodBodies(node.BlockBody, node.ExpressionBody); 3737VisitMethodBodies(node.BlockBody, node.ExpressionBody);
Generated\BoundNodes.xml.Generated.cs (9)
8764if (blockBody != this.BlockBody || expressionBody != this.ExpressionBody) 8794if (locals != this.Locals || initializer != this.Initializer || blockBody != this.BlockBody || expressionBody != this.ExpressionBody) 10820this.Visit(node.BlockBody); 10827this.Visit(node.BlockBody); 12384BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 12392BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 15089BoundBlock? blockBody = (BoundBlock?)this.Visit(node.BlockBody); 17265new TreeDumperNode("blockBody", null, new TreeDumperNode[] { Visit(node.BlockBody, null) }), 17274new TreeDumperNode("blockBody", null, new TreeDumperNode[] { Visit(node.BlockBody, null) }),
Operations\CSharpOperationFactory.cs (2)
354(IBlockOperation?)Create(boundNode.BlockBody), 366(IBlockOperation?)Create(boundNode.BlockBody),