(ch)
| 3570 | }; |
| 3571 | |
| 3572 | function codePointToString$1(ch) { |
| 3573 | if (ch <= 0xFFFF) { return String.fromCharCode(ch) } |
| 3574 | ch -= 0x10000; |
| 3575 | return String.fromCharCode((ch >> 10) + 0xD800, (ch & 0x03FF) + 0xDC00) |
| 3576 | } |
| 3577 | |
| 3578 | /** |
| 3579 | * Validate the flags part of a given RegExpLiteral. |
no outgoing calls
no test coverage detected
searching dependent graphs…