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

Function IsIdentifierStart

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

Source from the content-addressed store, hash-verified

2239}
2240
2241func IsIdentifierStart(ch rune) bool {
2242 return stringutil.IsASCIILetter(ch) || ch == '_' || ch == '$' || ch >= utf8.RuneSelf && stringutil.IsUnicodeIdentifierStart(ch)
2243}
2244
2245func IsIdentifierPart(ch rune) bool {
2246 return IsIdentifierPartEx(ch, core.LanguageVariantStandard)

Callers 11

reparseJSDocSignatureMethod · 0.92
ScanMethod · 0.85
CanFollowJSDocAtMethod · 0.85
ScanJSDocTokenMethod · 0.85
scanIdentifierMethod · 0.85
scanNumberMethod · 0.85
IsValidIdentifierFunction · 0.85
IsIdentifierTextFunction · 0.85

Calls 2

IsASCIILetterFunction · 0.92
IsUnicodeIdentifierStartFunction · 0.92

Tested by

no test coverage detected