(String expected)
| 377 | } |
| 378 | |
| 379 | private String |
| 380 | _getIdentifier(String expected) throws IOException { |
| 381 | Token next = get(); |
| 382 | if (next.type != IDENTIFIER) |
| 383 | throw exception("expected " + expected); |
| 384 | return next.value; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Gets the next token from a tokenizer, ensures it is an unquoted string, |
no test coverage detected