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