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