10 references to IsKeyword
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\SyntaxNormalizer.vb (1)
115If _useDefaultCasing AndAlso token.IsKeyword() Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
ParenthesizedExpressionSyntaxExtensions.vb (2)
476nextToken.IsKeyword Then 516lastToken.IsKeyword AndAlso
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Syntax\SyntaxFactsTest.vb (3)
23Assert.False(CType(Nothing, SyntaxToken).IsKeyword()) 28Assert.True(SyntaxFactory.Token(SyntaxKind.MyClassKeyword).IsKeyword()) 33Assert.False(SyntaxFactory.IntegerLiteralToken("1", LiteralBase.Decimal, TypeCharacter.None, 1).IsKeyword())
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
ParenthesizedExpressionSyntaxExtensions.vb (2)
476nextToken.IsKeyword Then 516lastToken.IsKeyword AndAlso
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
CodeModel\VisualBasicCodeModelService.vb (2)
866If (token.IsKeyword() OrElse token.Kind = SyntaxKind.IdentifierToken) AndAlso 867(nextToken.IsKeyword() OrElse nextToken.Kind = SyntaxKind.IdentifierToken) Then