14 references to GetSpecialTypeSafe
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder.ValueChecks.cs (3)
699if ((expr.ConstantValueOpt != null) || (expr.Type.GetSpecialTypeSafe() == SpecialType.System_Void)) 3316if (expr.Type?.GetSpecialTypeSafe() == SpecialType.System_Void) 3632if (expr.Type?.GetSpecialTypeSafe() == SpecialType.System_Void)
Binder\Binder_Conversions.cs (1)
2945destinationType = destination.GetSpecialTypeSafe();
Binder\Binder_Deconstruct.cs (1)
693if (deconstructMethod.ReturnType.GetSpecialTypeSafe() != SpecialType.System_Void)
Binder\Semantics\Conversions\ConversionsBase.cs (5)
1347var specialSource = source.Type.GetSpecialTypeSafe(); 1353switch (destination.GetSpecialTypeSafe()) 1374else if (specialSource == SpecialType.System_Int64 && destination.GetSpecialTypeSafe() == SpecialType.System_UInt64 && (constantValue.IsBad || 0 <= constantValue.Int64Value)) 2716if (destination.GetSpecialTypeSafe() == SpecialType.System_Array) 2754var specialDestination = destination.GetSpecialTypeSafe();
Binder\Semantics\OverloadResolution\OverloadResolution.cs (2)
3456switch (type.GetSpecialTypeSafe()) 3477switch (type.GetSpecialTypeSafe())
Symbols\TypeSymbolExtensions.cs (2)
2161switch (type.GetSpecialTypeSafe()) 2186switch (underlyingType.GetSpecialTypeSafe())