21 references to BindRValueWithoutTargetType
Microsoft.CodeAnalysis.CSharp (21)
Binder\Binder_AnonymousTypes.cs (1)
66boundExpressions[i] = BindRValueWithoutTargetType(expression, diagnostics);
Binder\Binder_Attributes.cs (1)
522var rhs = BindRValueWithoutTargetType(namedArgument.Expression, diagnostics);
Binder\Binder_Await.cs (1)
24BoundExpression expression = BindRValueWithoutTargetType(node.Expression, diagnostics);
Binder\Binder_Expressions.cs (4)
4081var size = BindRValueWithoutTargetType(arg, diagnostics); 5285var expression = @this.BindRValueWithoutTargetType(syntax.Expression, diagnostics); 7445boundLeft = BindRValueWithoutTargetType(exprSyntax, diagnostics); // Not Color Color issues with -> 11498var receiver = BindRValueWithoutTargetType(receiverSyntax, diagnostics);
Binder\Binder_Operators.cs (4)
1365BoundExpression left = BindRValueWithoutTargetType(child, diagnostics); 1370BoundExpression right = BindRValueWithoutTargetType(binary.Right, diagnostics); 4647var operand = BindRValueWithoutTargetType(node.Left, diagnostics); 5117var 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); 737var 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);