* Peek at the next raw byte (after skipping whitespace/comments).
()
| 115 | * Peek at the next raw byte (after skipping whitespace/comments). |
| 116 | */ |
| 117 | peekByte(): number { |
| 118 | this.skipWhitespaceAndComments(); |
| 119 | |
| 120 | return this.scanner.peek(); |
| 121 | } |
| 122 | |
| 123 | private skipToEndOfLine(): void { |
| 124 | while (true) { |
no test coverage detected