5 references to IsAttribute
Microsoft.CodeAnalysis.Features (5)
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
110
if (syntaxFactsService.
IsAttribute
(attributeSyntaxNodeCandidate))
ConvertToInterpolatedString\ConvertRegularStringToInterpolatedStringRefactoringProvider.cs (1)
70
var attribute = literalExpression.FirstAncestorOrSelf<SyntaxNode>(syntaxFacts.
IsAttribute
);
GenerateMember\AbstractGenerateMemberService.cs (1)
140
var attributeNode = expression.GetAncestors().FirstOrDefault(syntaxFacts.
IsAttribute
);
RemoveUnnecessaryPragmaSuppressionsCodeFixProvider.cs (2)
43
if (root.FindNode(diagnostic.Location.SourceSpan) is { } node && syntaxFacts.
IsAttribute
(node) ||
81
syntaxFacts.
IsAttribute
(attribute))