2 implementations of IsNumericLiteral
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxFacts.cs (1)
1189public bool IsNumericLiteral(SyntaxToken token)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
1212Public Function IsNumericLiteral(token As SyntaxToken) As Boolean Implements ISyntaxFacts.IsNumericLiteral
5 references to IsNumericLiteral
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService_FindReferences.cs (1)
184t => syntaxFacts.IsNumericLiteral(t) ||
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
1212Public Function IsNumericLiteral(token As SyntaxToken) As Boolean Implements ISyntaxFacts.IsNumericLiteral
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindLiterals\FindLiteralsSearchEngine.cs (1)
182syntaxFacts.IsNumericLiteral(token))
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (1)
144if (syntaxFacts.IsNumericLiteral(token))
ISyntaxFactsExtensions.cs (1)
383=> syntaxFacts.IsWord(token) || syntaxFacts.IsNumericLiteral(token);