* Skip space characters (not newlines).
()
| 451 | * Skip space characters (not newlines). |
| 452 | */ |
| 453 | private skipSpaces(): void { |
| 454 | while (this.scanner.peek() === SPACE) { |
| 455 | this.scanner.advance(); |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Skip to the end of line (but don't consume EOL). |
no test coverage detected