()
| 675 | // ----- Main tokenization loop ----- |
| 676 | |
| 677 | #isLineComment() { |
| 678 | var c = this.#currentChar(), n = this.#nextChar(), n2 = this.#charAt(2); |
| 679 | return (c === "-" && n === "-" && (this.#isWhitespace(n2) || n2 === "" || n2 === "-")) |
| 680 | || (c === "/" && n === "/" && (this.#isWhitespace(n2) || n2 === "" || n2 === "/")); |
| 681 | } |
| 682 | |
| 683 | #tokenize() { |
| 684 | while (this.#position < this.#source.length) { |
no test coverage detected