1 implementation of IsNumericLiteral
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1132public bool IsNumericLiteral(SyntaxToken token)
4 references to IsNumericLiteral
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService_FindReferences.cs (1)
184(_, t) => syntaxFacts.IsNumericLiteral(t) ||
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindLiterals\FindLiteralsSearchEngine.cs (1)
183syntaxFacts.IsNumericLiteral(token))
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (1)
155if (syntaxFacts.IsNumericLiteral(token))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
381=> syntaxFacts.IsWord(token) || syntaxFacts.IsNumericLiteral(token);