5 references to IsNullable
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Symbols\ITypeSymbolExtensions.cs (3)
37
var isNullableValueType = type.
IsNullable
();
61
=> symbol is { IsValueType: true } && !symbol.
IsNullable
();
67
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)
400
var shouldAddNullCheck = addNullChecks && parameter.Type.CanAddNullCheck() && !parameter.Type.
IsNullable
();