16 references to IsNonNullableValueType
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Expressions.cs (3)
2571
if (!indexType.
IsNonNullableValueType
())
2651
if (!rangeType.
IsNonNullableValueType
())
2678
if (!indexType.
IsNonNullableValueType
())
Binder\Binder_Patterns.cs (1)
610
if (inputType.
IsNonNullableValueType
() && !inputType.IsPointerOrFunctionPointer())
FlowAnalysis\AbstractFlowPass.cs (2)
2632
&& conv.Operand.Type!.
IsNonNullableValueType
());
3015
return param.Type.
IsNonNullableValueType
();
FlowAnalysis\NullableWalker.cs (4)
5117
if (isLifted && targetTypeWithNullability.Type.
IsNonNullableValueType
())
8923
if (targetType.
IsNonNullableValueType
())
9519
bool typeNeedsLifting = returnType.Type.
IsNonNullableValueType
();
10633
parameterOpt?.Type.
IsNonNullableValueType
() == true && parameterType.IsNullableType() ? parameterOpt.Type : parameterType, // Compensate for operator lifting
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
706
var resultType = (isLifted && method.ReturnType.
IsNonNullableValueType
() && node.Type.IsNullableType()) ?
Symbols\ConstraintsHelper.cs (3)
991
if (managedKind == ManagedKind.Managed || !typeArgument.Type.
IsNonNullableValueType
())
1015
if (typeParameter.HasValueTypeConstraint && !typeArgument.Type.
IsNonNullableValueType
())
1124
if (typeParameter.HasNotNullConstraint && typeArgument.GetValueNullableAnnotation().IsAnnotated() && !typeArgument.Type.
IsNonNullableValueType
())
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
658
if (!typeParameter.
IsNonNullableValueType
())
Symbols\TypeParameterSymbol.cs (1)
471
if (constraintType.Type.
IsNonNullableValueType
())