()
| 245 | } |
| 246 | |
| 247 | skipWhitespaces() { |
| 248 | let ch = this.#scanner.peek(); |
| 249 | while (isWhiteSpace(ch)) { |
| 250 | this.#scanner.next(); |
| 251 | ch = this.#scanner.peek(); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | skipComment() { |
| 256 | let ch = this.#scanner.peek(); |
no test coverage detected