()
| 391 | // ----- Consume methods ----- |
| 392 | |
| 393 | #consumeComment() { |
| 394 | while (this.#currentChar() && !this.#isNewline(this.#currentChar())) { |
| 395 | this.#consumeChar(); |
| 396 | } |
| 397 | this.#consumeChar(); |
| 398 | } |
| 399 | |
| 400 | #consumeWhitespace() { |
| 401 | var ws = this.#makeToken("WHITESPACE"); |
no test coverage detected