23 references to BindValue
Microsoft.CodeAnalysis.CSharp (23)
Binder\Binder_Deconstruct.cs (1)
99BoundExpression boundRight = rightPlaceholder ?? BindValue(right, deconstructionDiagnostics, BindValueKind.RValue);
Binder\Binder_Expressions.cs (7)
249return BindToNaturalType(BindValue(node, diagnostics, BindValueKind.RValue), diagnostics, reportNoTargetType); 2719BoundExpression boundOperand = BindValue(operand, diagnostics, BindValueKind.RValue); 3417argument = this.BindValue(argumentExpression, diagnostics, valueKind); 4102var size = BindValue(dimension, diagnostics, BindValueKind.RValue); 4564count = BindValue(countSyntax, diagnostics, BindValueKind.RValue); 5668return BindValue(syntax, diagnostics, rhsValueKind); 5801var boundExpression = BindValue(memberInitializer, diagnostics, BindValueKind.RValue);
Binder\Binder_Operators.cs (5)
3121BoundExpression operand = BindToNaturalType(BindValue(operandSyntax, diagnostics, BindValueKind.IncrementDecrement), diagnostics); 5727BoundExpression trueExpr = BindValue(whenTrue, diagnostics, BindValueKind.RValue); 5728BoundExpression falseExpr = BindValue(whenFalse, diagnostics, BindValueKind.RValue); 5768BoundExpression trueExpr = BindValue(whenTrue, diagnostics, BindValueKind.RValue | BindValueKind.RefersToLocation); 5769BoundExpression falseExpr = BindValue(whenFalse, diagnostics, BindValueKind.RValue | BindValueKind.RefersToLocation);
Binder\Binder_Query.cs (2)
837BoundExpression boundExpression = lambdaBodyBinder.BindValue(expression, diagnostics, BindValueKind.RValue); 847BoundExpression boundExpression = lambdaBodyBinder.BindValue(expression, diagnostics, BindValueKind.RValue);
Binder\Binder_Statements.cs (5)
395var boundExpr = BindValue(exprSyntax, diagnostics, BindValueKind.RValue); 893BoundExpression value = BindValue(initializer, diagnostics, valueKind); 1845return BindValue(node, diagnostics, valueKind); 2655var expr = BindValue(node, diagnostics, BindValueKind.RValue); 3592BoundExpression expression = bodyBinder.BindValue(expressionSyntax, diagnostics, requiredValueKind);
Binder\ForEachLoopBinder.cs (1)
626BoundExpression collectionExpr = this.GetBinder(collectionSyntax).BindValue(collectionSyntax, diagnostics, BindValueKind.RValue);
Binder\LockOrUsingBinder.cs (1)
84BoundExpression boundExpression = originalBinder.BindValue(TargetExpressionSyntax, expressionDiagnostics, Binder.BindValueKind.RValueOrMethodGroup);
Symbols\Source\SourceFixedFieldSymbol.cs (1)
93binder.BindValue(sizeExpression, diagnostics, Binder.BindValueKind.RValue),