(c)
| 1821 | return false; |
| 1822 | } |
| 1823 | static _isNewline(c) { |
| 1824 | switch (c) { |
| 1825 | case '\n': |
| 1826 | case '\r': |
| 1827 | case '\u2028': // 8232 |
| 1828 | case '\u2029': // 8233 |
| 1829 | return true; |
| 1830 | default: |
| 1831 | return false; |
| 1832 | } |
| 1833 | } |
| 1834 | static _isIdentifierStartChar(c) { |
| 1835 | if (c < 'A') { |
| 1836 | return c === '$'; |
no outgoing calls
no test coverage detected