9 references to NotNull
Microsoft.CodeAnalysis (1)
Symbols\NullableFlowState.cs (1)
41
case CodeAnalysis.NullableFlowState.
NotNull
:
Microsoft.CodeAnalysis.CSharp (6)
BoundTree\BoundNode.cs (2)
259
case CodeAnalysis.NullableFlowState.
NotNull
:
290
var flowState = (_attributes & BoundNodeAttributes.TopLevelFlowStateMaybeNull) == 0 ? CodeAnalysis.NullableFlowState.
NotNull
: CodeAnalysis.NullableFlowState.MaybeNull;
Compilation\CSharpSemanticModel.cs (2)
2111
convertedNullability = new NullabilityInfo(CodeAnalysis.NullableAnnotation.NotAnnotated, CodeAnalysis.NullableFlowState.
NotNull
);
2262
nullability = new NullabilityInfo(CodeAnalysis.NullableAnnotation.NotAnnotated, CodeAnalysis.NullableFlowState.
NotNull
);
Symbols\NullableFlowStateExtensions.cs (2)
32
CSharp.NullableFlowState.NotNull => CodeAnalysis.NullableFlowState.
NotNull
,
43
CodeAnalysis.NullableFlowState.
NotNull
=> CSharp.NullableFlowState.NotNull,
Microsoft.CodeAnalysis.CSharp.Features (2)
QuickInfo\CSharpSemanticQuickInfoProvider.cs (2)
247
(_, NullableFlowState.
NotNull
) => string.Format(FeaturesResources._0_is_not_null_here, symbol.ToDisplayString(s_nullableDisplayFormat)),
254
return (NullableAnnotation.None, NullableFlowState.
NotNull
);