* Parses a token string and returns a representation of the token * @abstract * @param {String} value
(value)
| 61 | * @param {String} value |
| 62 | */ |
| 63 | parse(value) { |
| 64 | throw new Error('You must implement a parse function for the tokenizer'); |
| 65 | } |
| 66 | |
| 67 | minToken() { |
| 68 | throw new Error('You must implement a minToken function for the tokenizer'); |
no outgoing calls
no test coverage detected