10 references to NullableContext
Microsoft.CodeAnalysis.PublicApiAnalyzers (10)
NullableContextExtensions.cs (10)
9
private static bool IsFlagSet(
NullableContext
context,
NullableContext
flag) =>
15
public static bool WarningsEnabled(this
NullableContext
context) =>
16
IsFlagSet(context,
NullableContext
.WarningsEnabled);
21
public static bool AnnotationsEnabled(this
NullableContext
context) =>
22
IsFlagSet(context,
NullableContext
.AnnotationsEnabled);
27
public static bool WarningsInherited(this
NullableContext
context) =>
28
IsFlagSet(context,
NullableContext
.WarningsContextInherited);
33
public static bool AnnotationsInherited(this
NullableContext
context) =>
34
IsFlagSet(context,
NullableContext
.AnnotationsContextInherited);