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)
7624var 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)
5436BoundLambda boundLambda = unboundLambda.Bind(type, isExpressionTree: false);
Binder\Binder_Invocation.cs (2)
1189var boundWithErrors = unboundLambda.BindForErrorRecovery(); 2200var discarded = unboundArgument.Bind((NamedTypeSymbol)parameterType, isExpressionTree: false);
Binder\Binder_Operators.cs (1)
3979case BoundLambda _:
Binder\Binder_Query.cs (2)
692var 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)
2106var lambda = (BoundLambda)highestBoundExpr; 2241var lambda = (BoundLambda)boundExpr; 2247var lambda = ((UnboundLambda)boundExpr).BindForErrorRecovery();
Compilation\MemberSemanticModel.cs (3)
1788result = GetLambdaEnclosingBinder(position, node, innerLambdaOrQuery, ((BoundLambda)boundInnerLambdaOrQuery).Binder); 1853var 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)
2378public override BoundNode VisitLambda(BoundLambda node)
FlowAnalysis\NullableWalker.cs (15)
1796BoundLambda lambda, 1961if (node is BoundLambda boundLambda && originalSymbol is LambdaSymbol l && updatedSymbol is NamedTypeSymbol n) 8554return getUnboundLambda((BoundLambda)argument, GetVariableState(_variables, lambdaState.Value), _getterNullResilienceData); 8600static UnboundLambda getUnboundLambda(BoundLambda expr, VariableState variableState, GetterNullResilienceData? getterNullResilienceData) 9305private void ReportNullabilityMismatchWithTargetDelegate(Location location, NamedTypeSymbol delegateType, BoundLambda lambda) 9508if (conversionOperand is BoundLambda lambda) 10255case BoundLambda lambda: 10343Action<NamedTypeSymbol>? visitLambdaArgument(NamedTypeSymbol delegateType, BoundLambda lambda, bool isTargetTyped) 10350Action<NamedTypeSymbol>? analyzeLambdaConversion(NamedTypeSymbol delegateType, BoundLambda lambda, bool isTargetTyped) 10367Action<NamedTypeSymbol> analyzeLambdaConversionAsContinuation(BoundLambda lambda) 10507public override BoundNode? VisitLambda(BoundLambda node) 10521private void VisitLambda(BoundLambda node, NamedTypeSymbol? delegateTypeOpt, Optional<LocalState> initialState = default) 10541private static void UseDelegateInvokeParameterAndReturnTypes(BoundLambda lambda, MethodSymbol? delegateInvokeMethod, out bool useDelegateInvokeParameterTypes, out bool useDelegateInvokeReturnType) 10560var lambda = node.BindForErrorRecovery(); 12041if (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)
7620public BoundLambda Update(UnboundLambda unboundLambda, MethodSymbol symbol, BoundBlock body, ReadOnlyBindingDiagnostic<AssemblySymbol> diagnostics, Binder binder, TypeSymbol? type) 7624var result = new BoundLambda(this.Syntax, unboundLambda, symbol, body, diagnostics, binder, type, this.HasErrors); 9267return VisitLambda((BoundLambda)node, arg); 9540public virtual R VisitLambda(BoundLambda node, A arg) => this.DefaultVisit(node, arg); 9776public virtual BoundNode? VisitLambda(BoundLambda node) => this.DefaultVisit(node); 10674public override BoundNode? VisitLambda(BoundLambda node) 12154public override BoundNode? VisitLambda(BoundLambda node) 14714public override BoundNode? VisitLambda(BoundLambda node) 14719BoundLambda updatedNode; 16975public 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)?.