(ch)
| 4125 | return false |
| 4126 | }; |
| 4127 | function isControlLetter(ch) { |
| 4128 | return ( |
| 4129 | (ch >= 0x41 /* A */ && ch <= 0x5A /* Z */) || |
| 4130 | (ch >= 0x61 /* a */ && ch <= 0x7A /* z */) |
| 4131 | ) |
| 4132 | } |
| 4133 | |
| 4134 | // https://www.ecma-international.org/ecma-262/8.0/#prod-RegExpUnicodeEscapeSequence |
| 4135 | pp$9.regexp_eatRegExpUnicodeEscapeSequence = function(state) { |
no outgoing calls
no test coverage detected
searching dependent graphs…