12 references to HasMatchingText
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (5)
MemberAccessExpressionSyntaxExtensions.vb (2)
23Return memberAccess.Name.Identifier.HasMatchingText(SyntaxKind.NewKeyword) 38Return memberAccess.Name.Identifier.HasMatchingText(SyntaxKind.NewKeyword)
SyntaxTokenExtensions.vb (1)
26token.HasMatchingText(kind)
VisualBasicSyntaxFacts.vb (2)
253If TypeOf token.Parent Is IdentifierNameSyntax AndAlso token.HasMatchingText(SyntaxKind.NewKeyword) Then 262If TypeOf token.Parent Is IdentifierNameSyntax AndAlso token.HasMatchingText(SyntaxKind.NewKeyword) Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (7)
ModifierCollectionFacts.vb (4)
45targetToken.HasMatchingText(SyntaxKind.AsyncKeyword) OrElse 46targetToken.HasMatchingText(SyntaxKind.IteratorKeyword) 194If targetToken.HasMatchingText(SyntaxKind.AsyncKeyword) Then 198ElseIf targetToken.HasMatchingText(SyntaxKind.IteratorKeyword) Then
SyntaxTreeExtensions.vb (2)
172If token.HasMatchingText(SyntaxKind.AsyncKeyword) OrElse token.HasMatchingText(SyntaxKind.IteratorKeyword) Then
VisualBasicIndentationService.Indenter.vb (1)
133If token.Kind = SyntaxKind.IdentifierToken AndAlso token.HasMatchingText(SyntaxKind.FromKeyword) Then