(type, value)
| 300 | }; |
| 301 | } |
| 302 | #makeOpToken(type, value) { |
| 303 | var token = this.#makeToken(type, value); |
| 304 | token.op = true; |
| 305 | return token; |
| 306 | } |
| 307 | // ----- Consume methods ----- |
| 308 | #consumeComment() { |
| 309 | while (this.#currentChar() && !this.#isNewline(this.#currentChar())) { |