21 references to BindRValueWithoutTargetType
Microsoft.CodeAnalysis.CSharp (21)
Binder\Binder_AnonymousTypes.cs (1)
66boundExpressions[i] = BindRValueWithoutTargetType(expression, diagnostics);
Binder\Binder_Attributes.cs (1)
524var rhs = BindRValueWithoutTargetType(namedArgument.Expression, diagnostics);
Binder\Binder_Await.cs (1)
24BoundExpression expression = BindRValueWithoutTargetType(node.Expression, diagnostics);
Binder\Binder_Expressions.cs (4)
4104var size = BindRValueWithoutTargetType(arg, diagnostics); 5315var expression = @this.BindRValueWithoutTargetType(syntax.Expression, diagnostics); 7476boundLeft = BindRValueWithoutTargetType(exprSyntax, diagnostics); // Not Color Color issues with -> 11529var receiver = BindRValueWithoutTargetType(receiverSyntax, diagnostics);
Binder\Binder_Operators.cs (4)
1372BoundExpression left = BindRValueWithoutTargetType(child, diagnostics); 1377BoundExpression right = BindRValueWithoutTargetType(binary.Right, diagnostics); 4679var operand = BindRValueWithoutTargetType(node.Left, diagnostics); 5149var operand = BindRValueWithoutTargetType(node.Left, diagnostics);
Binder\Binder_Patterns.cs (1)
23BoundExpression expression = BindRValueWithoutTargetType(node.Expression, diagnostics);
Binder\Binder_Query.cs (2)
380var inExpression = BindRValueWithoutTargetType(join.InExpression, diagnostics); 742var yExpression = lambdaBodyBinder.BindRValueWithoutTargetType(let.Expression, d);
Binder\Binder_Statements.cs (2)
538var value = BindRValueWithoutTargetType(node.Expression, BindingDiagnosticBag.Discarded); 653var expression = BindRValueWithoutTargetType(syntax, diagnostics);
Binder\Binder_WithExpression.cs (1)
19var receiver = BindRValueWithoutTargetType(syntax.Expression, diagnostics);
Binder\ForEachLoopBinder.cs (2)
192BoundExpression collectionExpr = originalBinder.GetBinder(_syntax.Expression).BindRValueWithoutTargetType(_syntax.Expression, diagnostics); 224BoundExpression collectionExpr = originalBinder.GetBinder(_syntax.Expression).BindRValueWithoutTargetType(_syntax.Expression, diagnostics);
Binder\SwitchBinder.cs (1)
379var switchGoverningExpression = binder.BindRValueWithoutTargetType(node, diagnostics);
Binder\SwitchExpressionBinder.cs (1)
199var switchGoverningExpression = BindRValueWithoutTargetType(SwitchExpressionSyntax.GoverningExpression, diagnostics);