(ch)
| 2687 | } |
| 2688 | |
| 2689 | function isIdentifierPart(ch) { |
| 2690 | return (ch === 36) || (ch === 95) || // $ (dollar) and _ (underscore) |
| 2691 | (ch >= 65 && ch <= 90) || // A..Z |
| 2692 | (ch >= 97 && ch <= 122) || // a..z |
| 2693 | (ch >= 48 && ch <= 57) || // 0..9 |
| 2694 | (ch === 92) || // \ (backslash) |
| 2695 | ((ch >= 0x80) && Regex.NonAsciiIdentifierPart.test(String.fromCharCode(ch))); |
| 2696 | } |
| 2697 | |
| 2698 | // 7.6.1.2 Future Reserved Words |
| 2699 |
no outgoing calls
no test coverage detected