(type, value)
| 306 | }; |
| 307 | } |
| 308 | #makeOpToken(type, value) { |
| 309 | var token = this.#makeToken(type, value); |
| 310 | token.op = true; |
| 311 | return token; |
| 312 | } |
| 313 | // ----- Consume methods ----- |
| 314 | #consumeComment() { |
| 315 | while (this.#currentChar() && !this.#isNewline(this.#currentChar())) { |