1 instantiation of BoundConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8990var result = new BoundConstructorMethodBody(this.Syntax, locals, initializer, blockBody, expressionBody, this.HasErrors);
20 references to BoundConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (20)
Binder\RefSafetyAnalysis.cs (2)
306BoundConstructorMethodBody constructorBody => constructorBody.BlockBody != node && constructorBody.ExpressionBody != node, 386public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node)
BoundTree\BoundNode.cs (1)
764public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node)
Compilation\MemberSemanticModel.NodeMapBuilder.cs (1)
296public override BoundNode VisitConstructorMethodBody(BoundConstructorMethodBody node)
Compiler\MethodCompiler.cs (2)
2001var constructor = (BoundConstructorMethodBody)methodBody;
FlowAnalysis\AbstractFlowPass.cs (1)
3786public override BoundNode VisitConstructorMethodBody(BoundConstructorMethodBody node)
FlowAnalysis\NullableWalker.cs (2)
1574return constructorBody is BoundConstructorMethodBody { Initializer: BoundExpressionStatement { Expression: BoundCall { Method: { MethodKind: MethodKind.Constructor } initializerMethod } } } 3645public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node)
Generated\BoundNodes.xml.Generated.cs (9)
8986public BoundConstructorMethodBody Update(ImmutableArray<LocalSymbol> locals, BoundStatement? initializer, BoundBlock? blockBody, BoundBlock? expressionBody) 8990var result = new BoundConstructorMethodBody(this.Syntax, locals, initializer, blockBody, expressionBody, this.HasErrors); 9564return VisitConstructorMethodBody((BoundConstructorMethodBody)node, arg); 9812public virtual R VisitConstructorMethodBody(BoundConstructorMethodBody node, A arg) => this.DefaultVisit(node, arg); 10053public virtual BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node) => this.DefaultVisit(node); 11083public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node) 12678public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node) 15409public override BoundNode? VisitConstructorMethodBody(BoundConstructorMethodBody node) 17657public override TreeDumperNode VisitConstructorMethodBody(BoundConstructorMethodBody node, object? arg) => new TreeDumperNode("constructorMethodBody", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
258return CreateConstructorBodyOperation((BoundConstructorMethodBody)boundNode); 368private IConstructorBodyOperation CreateConstructorBodyOperation(BoundConstructorMethodBody boundNode)