(ch)
| 3974 | return false |
| 3975 | }; |
| 3976 | function isRegExpIdentifierStart(ch) { |
| 3977 | return isIdentifierStart(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ |
| 3978 | } |
| 3979 | |
| 3980 | // RegExpIdentifierPart[U] :: |
| 3981 | // UnicodeIDContinue |
no test coverage detected
searching dependent graphs…