3 instantiations of BoundNonConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (3)
Binder\Binder_Statements.cs (2)
3571return new BoundNonConstructorMethodBody(compilationUnit, 3932return new BoundNonConstructorMethodBody(declaration,
Generated\BoundNodes.xml.Generated.cs (1)
8402var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.HasErrors);
13 references to BoundNonConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (13)
Compiler\MethodCompiler.cs (2)
1916var nonConstructor = (BoundNonConstructorMethodBody)methodBody;
FlowAnalysis\AbstractFlowPass.cs (1)
3505public override BoundNode VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node)
Generated\BoundNodes.xml.Generated.cs (8)
8398public BoundNonConstructorMethodBody Update(BoundBlock? blockBody, BoundBlock? expressionBody) 8402var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.HasErrors); 8955return VisitNonConstructorMethodBody((BoundNonConstructorMethodBody)node, arg); 9190public virtual R VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node, A arg) => this.DefaultVisit(node, arg); 9418public virtual BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) => this.DefaultVisit(node); 10392public override BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) 11753public override BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) 16468public override TreeDumperNode VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node, object? arg) => new TreeDumperNode("nonConstructorMethodBody", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
257return CreateMethodBodyOperation((BoundNonConstructorMethodBody)boundNode); 348private IMethodBodyOperation CreateMethodBodyOperation(BoundNonConstructorMethodBody boundNode)