2 implementations of IBoundLambdaOrFunction
Microsoft.CodeAnalysis.CSharp (2)
BoundTree\UnboundLambda.cs (2)
29internal sealed partial class BoundLocalFunctionStatement : IBoundLambdaOrFunction 70internal sealed partial class BoundLambda : IBoundLambdaOrFunction
7 references to IBoundLambdaOrFunction
Microsoft.CodeAnalysis.CSharp (7)
BoundTree\UnboundLambda.cs (5)
31MethodSymbol IBoundLambdaOrFunction.Symbol { get { return Symbol; } } 33SyntaxNode IBoundLambdaOrFunction.Syntax { get { return Syntax; } } 35BoundBlock? IBoundLambdaOrFunction.Body { get => this.Body; } 78MethodSymbol IBoundLambdaOrFunction.Symbol { get { return Symbol; } } 80SyntaxNode IBoundLambdaOrFunction.Syntax { get { return Syntax; } }
FlowAnalysis\NullableWalker.cs (1)
3229IBoundLambdaOrFunction lambdaOrFunction,
Lowering\ClosureConversion\ClosureConversion.cs (1)
1512IBoundLambdaOrFunction node,