(ch)
| 143492 | return ch === 0x24 || ch === 0x5F || ch >= 0x41 && ch <= 0x5A || ch >= 0x61 && ch <= 0x7A || ch === 0x5C || ch >= 0x80 && RegexNonAsciiIdentifierStart.test(String.fromCharCode(ch)); |
| 143493 | } |
| 143494 | function isIdentifierPart(ch) { |
| 143495 | return ch === 0x24 || ch === 0x5F || ch >= 0x41 && ch <= 0x5A || ch >= 0x61 && ch <= 0x7A || ch >= 0x30 && ch <= 0x39 || ch === 0x5C || ch >= 0x80 && RegexNonAsciiIdentifierPart.test(String.fromCharCode(ch)); |
| 143496 | } // 7.6.1.1 Keywords |
| 143497 | const keywords = { |
| 143498 | "if": 1, |
| 143499 | "in": 1, |
no outgoing calls
no test coverage detected