* Parses the provided source and updates the parser state. * @abstract * @param {string | Buffer | PreparsedAst} source the source to parse * @param {ParserState} state the parser state * @returns {ParserState} the parser state
(source, state)
| 33 | * @returns {ParserState} the parser state |
| 34 | */ |
| 35 | parse(source, state) { |
| 36 | const AbstractMethodError = require(class="st">"./errors/AbstractMethodError"); |
| 37 | |
| 38 | throw new AbstractMethodError(); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | module.exports = Parser; |
no test coverage detected