7 references to CreateConversion
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (6)
1733BoundExpression newLeftOperand = CreateConversion(left, underlyingType, diagnostics); 1734BoundExpression newRightOperand = CreateConversion(right, underlyingType, diagnostics); 1745newLeftOperand = CreateConversion(newLeftOperand, operandType, diagnostics); 1746newRightOperand = CreateConversion(newRightOperand, operandType, diagnostics); 2820BoundExpression newOperand = CreateConversion(operand, underlyingType, diagnostics); 2829newOperand = CreateConversion(newOperand, upconvertType, diagnostics);
Binder\Binder_Patterns.cs (1)
694convertedExpression = CreateConversion(operand, inputType.GetNullableUnderlyingType(), BindingDiagnosticBag.Discarded);