20 references to AttributeableParentTargets
ILLink.CodeFixProvider (20)
BaseAttributeCodeFixProvider.cs (8)
25private protected abstract AttributeableParentTargets AttributableParentTargets { get; } 93private static CSharpSyntaxNode? FindAttributableParent(SyntaxNode node, AttributeableParentTargets targets) 103case PropertyDeclarationSyntax when targets.HasFlag(AttributeableParentTargets.Property): 104case EventDeclarationSyntax when targets.HasFlag(AttributeableParentTargets.Event): 111if (targets.HasFlag(AttributeableParentTargets.MethodOrConstructor)) 116case LocalFunctionStatementSyntax or BaseMethodDeclarationSyntax or AccessorDeclarationSyntax when targets.HasFlag(AttributeableParentTargets.MethodOrConstructor): 117case FieldDeclarationSyntax when targets.HasFlag(AttributeableParentTargets.Field): 118case ClassDeclarationSyntax when targets.HasFlag(AttributeableParentTargets.Class):
RequiresAssemblyFilesCodeFixProvider.cs (4)
31private protected override AttributeableParentTargets AttributableParentTargets => AttributeableParentTargets.MethodOrConstructor | AttributeableParentTargets.Property | AttributeableParentTargets.Event;
RequiresDynamicCodeCodeFixProvider.cs (3)
28private protected override AttributeableParentTargets AttributableParentTargets => AttributeableParentTargets.MethodOrConstructor | AttributeableParentTargets.Class;
RequiresUnreferencedCodeCodeFixProvider.cs (3)
28private protected override AttributeableParentTargets AttributableParentTargets => AttributeableParentTargets.MethodOrConstructor | AttributeableParentTargets.Class;
UnconditionalSuppressMessageCodeFixProvider.cs (2)
36private protected override AttributeableParentTargets AttributableParentTargets => AttributeableParentTargets.All;