4 instantiations of BoundLambda
Microsoft.CodeAnalysis.CSharp (4)
BoundTree\UnboundLambda.cs (3)
905var result = new BoundLambda(_unboundLambda.Syntax, _unboundLambda, block, diagnostics.ToReadOnlyAndFree(), lambdaBodyBinder, delegateType, inferredReturnType: default) 1000var result = new BoundLambda( 1250return new BoundLambda(
Generated\BoundNodes.xml.Generated.cs (1)
7622var result = new BoundLambda(this.Syntax, unboundLambda, symbol, body, diagnostics, binder, type, this.HasErrors);
115 references to BoundLambda
Microsoft.CodeAnalysis.CSharp (115)
Binder\Binder_Conversions.cs (1)
2221var boundLambda = unboundLambda.Bind((NamedTypeSymbol)destination, isExpressionTree: destination.IsGenericOrNonGenericExpressionType(out _)).WithInAnonymousFunctionConversion();
Binder\Binder_Expressions.cs (1)
5406BoundLambda boundLambda = unboundLambda.Bind(type, isExpressionTree: false);
Binder\Binder_Invocation.cs (2)
1173var boundWithErrors = unboundLambda.BindForErrorRecovery(); 2130var discarded = unboundArgument.Bind((NamedTypeSymbol)parameterType, isExpressionTree: false);
Binder\Binder_Operators.cs (1)
3947case BoundLambda _:
Binder\Binder_Query.cs (2)
687var l1 = c1 != null ? c1.Operand as BoundLambda : null;
Binder\Binder_Statements.cs (2)
2084var lambda = anonymousFunction.BindForErrorRecovery(); 2254var bindingResult = anonymousFunction.Bind(delegateType, isExpressionTree: false);
Binder\RefSafetyAnalysis.cs (1)
359public override BoundNode? VisitLambda(BoundLambda node)
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1577var bound = anonymousFunction.Bind(delegateType, isTargetExpressionTree);
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
3289BoundLambda lambda = ((UnboundLambda)node).BindForReturnTypeInference(d);
BoundTree\BoundTreeVisitors.cs (1)
126return VisitLambda(node as BoundLambda, arg);
BoundTree\NullabilityRewriter.cs (2)
181return (T)remapLambda((BoundLambda)expr, lambda); 196Symbol remapLambda(BoundLambda boundLambda, LambdaSymbol lambda)
BoundTree\UnboundLambda.cs (40)
94internal BoundLambda WithInAnonymousFunctionConversion() 101var result = (BoundLambda)MemberwiseClone(); 193BoundLambda node, Binder binder, TypeSymbol? delegateType, bool isAsync, ConversionsBase conversions) 458public BoundLambda Bind(NamedTypeSymbol delegateType, bool isExpressionTree) 461public BoundLambda BindForErrorRecovery() 464public BoundLambda BindForReturnTypeInference(NamedTypeSymbol delegateType) 467private BoundLambda SuppressIfNeeded(BoundLambda lambda) 468=> this.IsSuppressed ? (BoundLambda)lambda.WithSuppression() : lambda; 534Constraint = "Avoid " + nameof(ConcurrentDictionary<(NamedTypeSymbol, bool), BoundLambda>) + " which has a large default size, but this cache is normally small.")] 535private ImmutableDictionary<(NamedTypeSymbol Type, bool IsExpressionLambda), BoundLambda>? _bindingCache; 539Constraint = "Avoid " + nameof(ConcurrentDictionary<ReturnInferenceCacheKey, BoundLambda>) + " which has a large default size, but this cache is normally small.")] 540private ImmutableDictionary<ReturnInferenceCacheKey, BoundLambda>? _returnInferenceCache; 542private BoundLambda? _errorBinding; 551_bindingCache = ImmutableDictionary<(NamedTypeSymbol Type, bool IsExpressionLambda), BoundLambda>.Empty.WithComparers(BindingCacheComparer.Instance); 552_returnInferenceCache = ImmutableDictionary<ReturnInferenceCacheKey, BoundLambda>.Empty; 627public BoundLambda Bind(NamedTypeSymbol delegateType, bool isTargetExpressionTree) 631if (!_bindingCache!.TryGetValue((delegateType, inExpressionTree), out BoundLambda? result)) 643foreach (var lambda in _returnInferenceCache!.Values) 750BoundLambda.BlockReturns.GetReturnTypes(returnTypes, block); 751var inferredReturnType = BoundLambda.InferReturnType( 804private BoundLambda ReallyBind(NamedTypeSymbol delegateType, bool inExpressionTree) 829_returnInferenceCache!.TryGetValue(cacheKey, out BoundLambda? returnInferenceLambda) && 905var result = new BoundLambda(_unboundLambda.Syntax, _unboundLambda, block, diagnostics.ToReadOnlyAndFree(), lambdaBodyBinder, delegateType, inferredReturnType: default) 960private BoundLambda ReallyInferReturnType( 985BoundLambda.BlockReturns.GetReturnTypes(returnTypes, block); 986inferredReturnType = BoundLambda.InferReturnType(returnTypes, _unboundLambda, lambdaBodyBinder, delegateType, lambdaSymbol.IsAsync, lambdaBodyBinder.Conversions); 1000var result = new BoundLambda( 1036public BoundLambda BindForReturnTypeInference(NamedTypeSymbol delegateType) 1040BoundLambda? result; 1051/// Behavior of this key should be kept aligned with <see cref="BoundLambda.InferReturnTypeImpl"/>. 1186public BoundLambda BindForErrorRecovery() 1204private BoundLambda ReallyBindForErrorRecovery() 1216[return: NotNullIfNotNull(nameof(lambda))] BoundLambda? rebind(BoundLambda? lambda) 1226private BoundLambda ReallyBindForErrorRecovery( 1269private static BoundLambda? GuessBestBoundLambda<T>(ImmutableDictionary<T, BoundLambda> candidates) 1280IEnumerable<KeyValuePair<T, BoundLambda>> minDiagnosticsGroup = candidates.GroupBy(lambda => lambda.Value.Diagnostics.Diagnostics.Length).OrderBy(group => group.Key).First();
Compilation\CSharpSemanticModel.cs (5)
2103var lambda = (BoundLambda)highestBoundExpr; 2238var lambda = (BoundLambda)boundExpr; 2244var lambda = ((UnboundLambda)boundExpr).BindForErrorRecovery();
Compilation\MemberSemanticModel.cs (3)
1751result = GetLambdaEnclosingBinder(position, node, innerLambdaOrQuery, ((BoundLambda)boundInnerLambdaOrQuery).Binder); 1816var lambda = (BoundLambda)node;
FlowAnalysis\AbstractFlowPass.cs (1)
1279public override BoundNode VisitLambda(BoundLambda node) => null;
FlowAnalysis\AbstractRegionControlFlowPass.cs (1)
31public override BoundNode VisitLambda(BoundLambda node)
FlowAnalysis\AbstractRegionDataFlowPass.cs (1)
44public override BoundNode VisitLambda(BoundLambda node)
FlowAnalysis\DefiniteAssignment.cs (1)
2427public override BoundNode VisitLambda(BoundLambda node)
FlowAnalysis\NullableWalker.cs (15)
1798BoundLambda lambda, 1963if (node is BoundLambda boundLambda && originalSymbol is LambdaSymbol l && updatedSymbol is NamedTypeSymbol n) 8516return getUnboundLambda((BoundLambda)argument, GetVariableState(_variables, lambdaState.Value), _getterNullResilienceData); 8562static UnboundLambda getUnboundLambda(BoundLambda expr, VariableState variableState, GetterNullResilienceData? getterNullResilienceData) 9267private void ReportNullabilityMismatchWithTargetDelegate(Location location, NamedTypeSymbol delegateType, BoundLambda lambda) 9470if (conversionOperand is BoundLambda lambda) 10217case BoundLambda lambda: 10305Action<NamedTypeSymbol>? visitLambdaArgument(NamedTypeSymbol delegateType, BoundLambda lambda, bool isTargetTyped) 10312Action<NamedTypeSymbol>? analyzeLambdaConversion(NamedTypeSymbol delegateType, BoundLambda lambda, bool isTargetTyped) 10329Action<NamedTypeSymbol> analyzeLambdaConversionAsContinuation(BoundLambda lambda) 10469public override BoundNode? VisitLambda(BoundLambda node) 10483private void VisitLambda(BoundLambda node, NamedTypeSymbol? delegateTypeOpt, Optional<LocalState> initialState = default) 10503private static void UseDelegateInvokeParameterAndReturnTypes(BoundLambda lambda, MethodSymbol? delegateInvokeMethod, out bool useDelegateInvokeParameterTypes, out bool useDelegateInvokeReturnType) 10522var lambda = node.BindForErrorRecovery(); 12000if (child is BoundLambda lambda)
FlowAnalysis\NullableWalker.SnapshotManager.cs (1)
235if (node is BoundLambda && symbol is LambdaSymbol)
FlowAnalysis\VariablesDeclaredWalker.cs (1)
101public override BoundNode VisitLambda(BoundLambda node)
Generated\BoundNodes.xml.Generated.cs (10)
7618public BoundLambda Update(UnboundLambda unboundLambda, MethodSymbol symbol, BoundBlock body, ReadOnlyBindingDiagnostic<AssemblySymbol> diagnostics, Binder binder, TypeSymbol? type) 7622var result = new BoundLambda(this.Syntax, unboundLambda, symbol, body, diagnostics, binder, type, this.HasErrors); 9265return VisitLambda((BoundLambda)node, arg); 9538public virtual R VisitLambda(BoundLambda node, A arg) => this.DefaultVisit(node, arg); 9774public virtual BoundNode? VisitLambda(BoundLambda node) => this.DefaultVisit(node); 10673public override BoundNode? VisitLambda(BoundLambda node) 12154public override BoundNode? VisitLambda(BoundLambda node) 14715public override BoundNode? VisitLambda(BoundLambda node) 14720BoundLambda updatedNode; 16977public override TreeDumperNode VisitLambda(BoundLambda node, object? arg) => new TreeDumperNode("lambda", null, new TreeDumperNode[]
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (4)
765public override BoundNode VisitLambda(BoundLambda node) 775var result = (BoundLambda)base.VisitLambda(node); 949public override BoundNode VisitLambda(BoundLambda node)
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
443public override BoundNode VisitLambda(BoundLambda node)
Lowering\ClosureConversion\ClosureConversion.cs (4)
1338return RewriteLambdaConversion((BoundLambda)node.Argument); 1400var result = (BoundExpression)RewriteLambdaConversion((BoundLambda)conversion.Operand); 1621private BoundNode RewriteLambdaConversion(BoundLambda node) 1791public override BoundNode VisitLambda(BoundLambda node)
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (4)
112internal static BoundNode RewriteLambda(BoundLambda node, TypeCompilationState compilationState, TypeMap typeMap, int recursionDepth, BindingDiagnosticBag diagnostics) 219return VisitLambda((BoundLambda)node); 827private BoundExpression VisitLambda(BoundLambda node) 833private BoundExpression VisitLambdaInternal(BoundLambda node)
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
604public override BoundNode VisitLambda(BoundLambda node)
Lowering\ExtensionMethodBodyRewriter.cs (1)
92public override BoundNode? VisitLambda(BoundLambda node)
Lowering\LocalRewriter\LocalRewriter.cs (1)
326public override BoundNode VisitLambda(BoundLambda node)
Lowering\SpillSequenceSpiller.cs (1)
1405public override BoundNode VisitLambda(BoundLambda node)
Operations\CSharpOperationFactory.cs (4)
88return CreateBoundLambdaOperation((BoundLambda)boundNode); 990BoundLambda boundLambda = unboundLambda.BindForErrorRecovery(); 994private IAnonymousFunctionOperation CreateBoundLambdaOperation(BoundLambda boundLambda) 1071((boundOperand as BoundLambda)?.Body.Statements.SingleOrDefault() as BoundReturnStatement)?.