2 instantiations of BoundNonConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Statements.cs (1)
3576return new BoundNonConstructorMethodBody(compilationUnit,
Generated\BoundNodes.xml.Generated.cs (1)
8718var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.HasErrors);
13 references to BoundNonConstructorMethodBody
Microsoft.CodeAnalysis.CSharp (13)
Compiler\MethodCompiler.cs (2)
1873var nonConstructor = (BoundNonConstructorMethodBody)methodBody;
FlowAnalysis\AbstractFlowPass.cs (1)
3607public override BoundNode VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node)
Generated\BoundNodes.xml.Generated.cs (8)
8714public BoundNonConstructorMethodBody Update(BoundBlock? blockBody, BoundBlock? expressionBody) 8718var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.HasErrors); 9287return VisitNonConstructorMethodBody((BoundNonConstructorMethodBody)node, arg); 9530public virtual R VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node, A arg) => this.DefaultVisit(node, arg); 9766public virtual BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) => this.DefaultVisit(node); 10769public override BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) 12185public override BoundNode? VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node) 17085public override TreeDumperNode VisitNonConstructorMethodBody(BoundNonConstructorMethodBody node, object? arg) => new TreeDumperNode("nonConstructorMethodBody", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
261return CreateMethodBodyOperation((BoundNonConstructorMethodBody)boundNode); 351private IMethodBodyOperation CreateMethodBodyOperation(BoundNonConstructorMethodBody boundNode)