()
| 370 | } |
| 371 | |
| 372 | int skipSpaces() { |
| 373 | int i = 0; |
| 374 | while (hasMoreInput() && isSpace()) { |
| 375 | i++; |
| 376 | nextChar(); |
| 377 | } |
| 378 | return i; |
| 379 | } |
| 380 | |
| 381 | /** |
| 382 | * Skip until the given string is matched in the stream. When returned, the context is positioned past the end of |
no test coverage detected