1 implementation of IdentifierToken
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
144public int IdentifierToken => (int)SyntaxKind.IdentifierToken;
3 references to IdentifierToken
Microsoft.CodeAnalysis.Features (2)
RelatedDocuments\AbstractRelatedDocumentsService.cs (1)
88var identifierTokenKind = syntaxKinds.IdentifierToken;
SpellCheck\AbstractSpellCheckSpanService.cs (1)
106else if (token.RawKind == _syntaxKinds.IdentifierToken)
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
739=> token.RawKind == syntaxFacts.SyntaxKinds.IdentifierToken;