()
| 264 | } |
| 265 | |
| 266 | skipComment() { |
| 267 | let ch = this.#scanner.peek(); |
| 268 | if (ch !== SHARP) return; |
| 269 | this.#scanner.next(); |
| 270 | ch = this.#scanner.peek(); |
| 271 | while (ch !== 0 && !isEOL(ch)) { |
| 272 | this.#scanner.next(); |
| 273 | ch = this.#scanner.peek(); |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | readIndent() { |
| 278 | let ch = this.#scanner.peek(); |
no test coverage detected