advance the parser through all whitespace to the next non-whitespace code unit.
()
| 1242 | |
| 1243 | /** advance the parser through all whitespace to the next non-whitespace code unit. */ |
| 1244 | private bumpSpace() { |
| 1245 | while (!this.isEOF() && _isWhiteSpace(this.char())) { |
| 1246 | this.bump() |
| 1247 | } |
| 1248 | } |
| 1249 | |
| 1250 | /** |
| 1251 | * Peek at the *next* Unicode codepoint in the input without advancing the parser. |
no test coverage detected