(ch)
| 143489 | return ch === 0x0A || ch === 0x0D || ch === 0x2028 || ch === 0x2029; |
| 143490 | } // 7.6 Identifier Names and Identifiers |
| 143491 | function isIdentifierStart(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 |
no outgoing calls
no test coverage detected