(ch)
| 21726 | return false |
| 21727 | }; |
| 21728 | function isRegExpIdentifierPart(ch) { |
| 21729 | return isIdentifierChar(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ || ch === 0x200C /* <ZWNJ> */ || ch === 0x200D /* <ZWJ> */ |
| 21730 | } |
| 21731 | |
| 21732 | // https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-AtomEscape |
| 21733 | pp$9.regexp_eatAtomEscape = function(state) { |
no test coverage detected