8 references to IsNullableType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (7)
Compilation\GetSemanticInfoTests.cs (2)
3330Assert.True(gNullableType.IsNullableType(), "MNG parameter is not a nullable type?"); 3396Assert.True(gNullableType.IsNullableType(), "MNG parameter is not a nullable type?");
Symbols\TypeTests.cs (5)
1704Assert.True(memType.IsNullableType()); 1717Assert.True(memType.IsNullableType()); 1724Assert.True(memType.IsNullableType()); 1780Assert.True(((ITypeSymbol)tinfo.Type).IsNullableType()); 1784Assert.True(((ITypeSymbol)tinfo.ConvertedType).IsNullableType());
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
Extensions.cs (1)
728return type.IsNullableType() ? type.GetNullableUnderlyingType() : type;