()
| 306 | } |
| 307 | // ----- Consume methods ----- |
| 308 | #consumeComment() { |
| 309 | while (this.#currentChar() && !this.#isNewline(this.#currentChar())) { |
| 310 | this.#consumeChar(); |
| 311 | } |
| 312 | this.#consumeChar(); |
| 313 | } |
| 314 | #consumeWhitespace() { |
| 315 | var ws = this.#makeToken("WHITESPACE"); |
| 316 | var value = ""; |
no test coverage detected