6 references to Bind
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Conversions.cs (1)
2234var boundLambda = unboundLambda.Bind((NamedTypeSymbol)destination, isExpressionTree: destination.IsGenericOrNonGenericExpressionType(out _)).WithInAnonymousFunctionConversion();
Binder\Binder_Expressions.cs (1)
5397BoundLambda boundLambda = unboundLambda.Bind(type, isExpressionTree: false);
Binder\Binder_Invocation.cs (2)
2111_ = unboundArgument.Bind(delegateType, isExpressionTree: false); 2123var discarded = unboundArgument.Bind((NamedTypeSymbol)parameterType, isExpressionTree: false);
Binder\Binder_Statements.cs (1)
2231var bindingResult = anonymousFunction.Bind(delegateType, isExpressionTree: false);
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1577var bound = anonymousFunction.Bind(delegateType, isTargetExpressionTree);