()
| 252 | } |
| 253 | |
| 254 | skipEmptyLines() { |
| 255 | while (!this.atEnd()) { |
| 256 | const line = this.peekLine(); |
| 257 | if (line.trim() === '') { |
| 258 | this.consumeLine(); |
| 259 | } else { |
| 260 | break; |
| 261 | } |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | readUntil(char: string): string { |
| 266 | let result = ''; |
no test coverage detected