()
| 312 | } |
| 313 | // ----- Consume methods ----- |
| 314 | #consumeComment() { |
| 315 | while (this.#currentChar() && !this.#isNewline(this.#currentChar())) { |
| 316 | this.#consumeChar(); |
| 317 | } |
| 318 | this.#consumeChar(); |
| 319 | } |
| 320 | #consumeWhitespace() { |
| 321 | var ws = this.#makeToken("WHITESPACE"); |
| 322 | var value = ""; |
no test coverage detected