7 references to IsNotNull
Microsoft.CodeAnalysis.CSharp (7)
FlowAnalysis\NullableWalker.cs (6)
1138
return !parameterState.
IsNotNull
();
1354
if (inputParamNames.IsEmpty || outputState.
IsNotNull
())
1363
&& GetState(ref state, inputSlot).
IsNotNull
())
5031
return resultType.State.
IsNotNull
()
9480
if (!isLiftedConversion || operandState.
IsNotNull
())
9482
var returnNotNull = operandState.
IsNotNull
() && method.ReturnNotNullIfParameterNotNull.Contains(parameter.Name);
Symbols\TypeWithState.cs (1)
94
(State.
IsNotNull
() || Type?.CanContainNull() == false ? NullableAnnotation.NotAnnotated : NullableAnnotation.Annotated);