7 references to CreateConversion
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (6)
1697
BoundExpression newLeftOperand =
CreateConversion
(left, underlyingType, diagnostics);
1698
BoundExpression newRightOperand =
CreateConversion
(right, underlyingType, diagnostics);
1709
newLeftOperand =
CreateConversion
(newLeftOperand, operandType, diagnostics);
1710
newRightOperand =
CreateConversion
(newRightOperand, operandType, diagnostics);
2772
BoundExpression newOperand =
CreateConversion
(operand, underlyingType, diagnostics);
2781
newOperand =
CreateConversion
(newOperand, upconvertType, diagnostics);
Binder\Binder_Patterns.cs (1)
685
convertedExpression =
CreateConversion
(operand, inputType.GetNullableUnderlyingType(), BindingDiagnosticBag.Discarded);