()
| 709 | } |
| 710 | |
| 711 | private skipCommentLine(): void { |
| 712 | while (true) { |
| 713 | if (this.stream.eof) { |
| 714 | break; |
| 715 | } |
| 716 | if (this.stream.char === '\n') { |
| 717 | break; |
| 718 | } |
| 719 | this.stream.next(); |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | private skipCommentRange(): void { |
| 724 | while (true) { |
no test coverage detected