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