()
| 386 | */ |
| 387 | |
| 388 | private void skipSpaces() { |
| 389 | int start = index; |
| 390 | while (hasNextChar()) { |
| 391 | char c = expression.charAt(index); |
| 392 | if (c > ' ') { |
| 393 | break; |
| 394 | } |
| 395 | index++; |
| 396 | } |
| 397 | whiteSpace = expression.substring(start, index); |
| 398 | } |
| 399 | |
| 400 | private boolean hasNextChar() { |
| 401 | return index < expression.length(); |
no test coverage detected