()
| 253 | } |
| 254 | |
| 255 | skipComment() { |
| 256 | let ch = this.#scanner.peek(); |
| 257 | if (ch !== SHARP) return; |
| 258 | this.#scanner.next(); |
| 259 | ch = this.#scanner.peek(); |
| 260 | while (ch !== 0 && !isEOL(ch)) { |
| 261 | this.#scanner.next(); |
| 262 | ch = this.#scanner.peek(); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | readIndent() { |
| 267 | let ch = this.#scanner.peek(); |
no test coverage detected