1 implementation of IsIdentifierPartCharacter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
451
public bool
IsIdentifierPartCharacter
(char c)
4 references to IsIdentifierPartCharacter
Microsoft.CodeAnalysis.Features (2)
Completion\Providers\CompletionUtilities.cs (1)
88
while (end < text.Length && syntaxFacts.
IsIdentifierPartCharacter
(text[end]))
Snippets\SnippetUtilities.cs (1)
22
if (!syntaxFactsService.
IsIdentifierPartCharacter
(c) && c != '#' && c != '~')
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder_GlobalSuppressions.cs (1)
221
if (ch == '#' || syntaxFacts.
IsIdentifierPartCharacter
(ch))
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
263
if (!syntaxFacts.
IsIdentifierPartCharacter
(name[i]))