(ch)
| 251 | // 7.6 Identifier Names and Identifiers |
| 252 | |
| 253 | function isIdentifierStart(ch) { |
| 254 | return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) |
| 255 | (ch >= 0x41 && ch <= 0x5A) || // A..Z |
| 256 | (ch >= 0x61 && ch <= 0x7A) || // a..z |
| 257 | (ch === 0x5C) || // \ (backslash) |
| 258 | ((ch >= 0x80) && Regex.NonAsciiIdentifierStart.test(String.fromCharCode(ch))); |
| 259 | } |
| 260 | |
| 261 | function isIdentifierPart(ch) { |
| 262 | return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) |
no outgoing calls
no test coverage detected