8 references to CreateConversion
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Invocation.cs (1)
1373receiver = CreateConversion(receiver, extensionParameter.Type, diagnostics);
Binder\Binder_Operators.cs (6)
1878BoundExpression newLeftOperand = CreateConversion(left, underlyingType, diagnostics); 1879BoundExpression newRightOperand = CreateConversion(right, underlyingType, diagnostics); 1890newLeftOperand = CreateConversion(newLeftOperand, operandType, diagnostics); 1891newRightOperand = CreateConversion(newRightOperand, operandType, diagnostics); 3210BoundExpression newOperand = CreateConversion(operand, underlyingType, diagnostics); 3219newOperand = CreateConversion(newOperand, upconvertType, diagnostics);
Binder\Binder_Patterns.cs (1)
694convertedExpression = CreateConversion(operand, inputType.GetNullableUnderlyingType(), BindingDiagnosticBag.Discarded);