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