3 instantiations of BoundMethodInfo
Microsoft.CodeAnalysis.CSharp (3)
Generated\BoundNodes.xml.Generated.cs (1)
2629var result = new BoundMethodInfo(this.Syntax, method, getMethodFromHandle, type, this.HasErrors);
Lowering\SyntheticBoundNodeFactory.cs (2)
1218return new BoundMethodInfo( 1313return new BoundMethodInfo(
15 references to BoundMethodInfo
Microsoft.CodeAnalysis.CSharp (15)
CodeGen\EmitExpression.cs (2)
273EmitMethodInfoExpression((BoundMethodInfo)expression); 3414private void EmitMethodInfoExpression(BoundMethodInfo node)
FlowAnalysis\AbstractFlowPass.cs (1)
2083public override BoundNode VisitMethodInfo(BoundMethodInfo node)
FlowAnalysis\NullableWalker.cs (1)
10541public override BoundNode? VisitMethodInfo(BoundMethodInfo node)
Generated\BoundNodes.xml.Generated.cs (10)
2625public BoundMethodInfo Update(MethodSymbol method, MethodSymbol? getMethodFromHandle, TypeSymbol type) 2629var result = new BoundMethodInfo(this.Syntax, method, getMethodFromHandle, type, this.HasErrors); 8641return VisitMethodInfo((BoundMethodInfo)node, arg); 9033public virtual R VisitMethodInfo(BoundMethodInfo node, A arg) => this.DefaultVisit(node, arg); 9261public virtual BoundNode? VisitMethodInfo(BoundMethodInfo node) => this.DefaultVisit(node); 9661public override BoundNode? VisitMethodInfo(BoundMethodInfo node) => null; 10800public override BoundNode? VisitMethodInfo(BoundMethodInfo node) 12678public override BoundNode? VisitMethodInfo(BoundMethodInfo node) 12682BoundMethodInfo updatedNode; 14999public override TreeDumperNode VisitMethodInfo(BoundMethodInfo node, object? arg) => new TreeDumperNode("methodInfo", null, new TreeDumperNode[]
Lowering\MethodToClassRewriter.cs (1)
215public override BoundNode VisitMethodInfo(BoundMethodInfo node)