()
| 2515 | |
| 2516 | // Internal: Resets the parser state and throws a `SyntaxError`. |
| 2517 | var abort = function () { |
| 2518 | Index = Source = null; |
| 2519 | throw SyntaxError(); |
| 2520 | }; |
| 2521 | |
| 2522 | // Internal: Returns the next token, or `"$"` if the parser has reached |
| 2523 | // the end of the source string. A token may be a string, number, `null` |
no outgoing calls
no test coverage detected