7 references to CreateConversion
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (6)
1728BoundExpression newLeftOperand = CreateConversion(left, underlyingType, diagnostics); 1729BoundExpression newRightOperand = CreateConversion(right, underlyingType, diagnostics); 1740newLeftOperand = CreateConversion(newLeftOperand, operandType, diagnostics); 1741newRightOperand = CreateConversion(newRightOperand, operandType, diagnostics); 2815BoundExpression newOperand = CreateConversion(operand, underlyingType, diagnostics); 2824newOperand = CreateConversion(newOperand, upconvertType, diagnostics);
Binder\Binder_Patterns.cs (1)
694convertedExpression = CreateConversion(operand, inputType.GetNullableUnderlyingType(), BindingDiagnosticBag.Discarded);