5 references to IsNullable
Microsoft.CodeAnalysis.Workspaces (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ITypeSymbolExtensions.cs (3)
34
var isNullableValueType = type.
IsNullable
();
66
=> symbol is { IsValueType: true } && !symbol.
IsNullable
();
72
if (
IsNullable
(symbol))
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Editing\ImportAdderService.cs (1)
205
if (namedType.OriginalDefinition.IsSpecialType() || namedType.
IsNullable
() || namedType.IsTupleType)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\SyntaxGeneratorExtensions.cs (1)
406
var shouldAddNullCheck = addNullChecks && parameter.Type.CanAddNullCheck() && !parameter.Type.
IsNullable
();