1 implementation of IsIdentifierStartCharacter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
441public bool IsIdentifierStartCharacter(char c)
4 references to IsIdentifierStartCharacter
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\CommandHandlers\AbstractRenameCommandHandler_TypeCharHandler.cs (1)
36syntaxFactsService.IsIdentifierStartCharacter(args.TypedChar) ||
IntelliSense\AsyncCompletion\CompletionSource.cs (1)
608if (current < questionPosition && syntaxFacts.IsIdentifierStartCharacter(text[current]))
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionService_GetCompletions.cs (1)
205var isIdentifierCharacter = syntaxFactsService.IsIdentifierStartCharacter(character) || syntaxFactsService.IsIdentifierEscapeCharacter(character);
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
256if (!syntaxFacts.IsIdentifierStartCharacter(name[0]))