MCPcopy Create free account
hub / github.com/microsoft/typescript-go / IsIdentifierPart

Function IsIdentifierPart

internal/scanner/scanner.go:2245–2247  ·  view source on GitHub ↗
(ch rune)

Source from the content-addressed store, hash-verified

2243}
2244
2245func IsIdentifierPart(ch rune) bool {
2246 return IsIdentifierPartEx(ch, core.LanguageVariantStandard)
2247}
2248
2249func IsIdentifierPartEx(ch rune, languageVariant core.LanguageVariant) bool {
2250 return isWordCharacter(ch) || ch == '$' ||

Callers 12

reparseJSDocSignatureMethod · 0.92
ReScanSlashTokenMethod · 0.85
ScanJSDocTokenMethod · 0.85
scanIdentifierMethod · 0.85
scanIdentifierPartsMethod · 0.85
scanEscapeSequenceMethod · 0.85
IsValidIdentifierFunction · 0.85
scanPatternModifiersMethod · 0.85

Calls 1

IsIdentifierPartExFunction · 0.85

Tested by

no test coverage detected