()
| 585 | |
| 586 | // Internal: Resets the parser state and throws a `SyntaxError`. |
| 587 | var abort = function () { |
| 588 | Index = Source = null; |
| 589 | throw SyntaxError(); |
| 590 | }; |
| 591 | |
| 592 | // Internal: Returns the next token, or `"$"` if the parser has reached |
| 593 | // the end of the source string. A token may be a string, number, `null` |
no outgoing calls
no test coverage detected