6 references to IsSpecialType
Microsoft.CodeAnalysis.CSharp.Workspaces (6)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\ExpressionGenerator.cs (6)
124
var isNotSingle = !
IsSpecialType
(type, SpecialType.System_Single);
135
if (value is double && !
IsSpecialType
(type, SpecialType.System_Double))
140
if (value is uint && !
IsSpecialType
(type, SpecialType.System_UInt32))
145
if (value is long && !
IsSpecialType
(type, SpecialType.System_Int64))
150
if (value is ulong && !
IsSpecialType
(type, SpecialType.System_UInt64))
159
var isNotDecimal = !
IsSpecialType
(type, SpecialType.System_Decimal);