1 implementation of IsIdentifierPartCharacter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
444public bool IsIdentifierPartCharacter(char c)
8 references to IsIdentifierPartCharacter
Microsoft.CodeAnalysis.EditorFeatures (3)
InlineRename\CommandHandlers\AbstractRenameCommandHandler_TypeCharHandler.cs (1)
37syntaxFactsService.IsIdentifierPartCharacter(args.TypedChar) ||
IntelliSense\AsyncCompletion\CompletionSource.cs (1)
617while (current < questionPosition && syntaxFacts.IsIdentifierPartCharacter(text[current]))
RenameTracking\RenameTrackingTaggerProvider.StateMachine.cs (1)
198return syntaxFactsService.IsIdentifierPartCharacter(c) || syntaxFactsService.IsIdentifierEscapeCharacter(c);
Microsoft.CodeAnalysis.Features (1)
Snippets\SnippetUtilities.cs (1)
22if (!syntaxFactsService.IsIdentifierPartCharacter(c) && c != '#' && c != '~')
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder_GlobalSuppressions.cs (1)
221if (ch == '#' || syntaxFacts.IsIdentifierPartCharacter(ch))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
263if (!syntaxFacts.IsIdentifierPartCharacter(name[i]))
Microsoft.VisualStudio.LanguageServices.CSharp (2)
LanguageService\CSharpHelpContextService.cs (2)
79while (start > 0 && syntaxFacts.IsIdentifierPartCharacter(text[start - 1])) 82while (end < text.Length - 1 && syntaxFacts.IsIdentifierPartCharacter(text[end]))