(String syntax)
| 651 | private boolean match (String syntax) { return _lexer.match (syntax); } |
| 652 | // Match must be "exact", not be followed by more id letters |
| 653 | private boolean matchx(String syntax) { return _lexer.matchx(syntax); } |
| 654 | // Return true and do NOT skip if 'ch' is next |
| 655 | private boolean peek(char ch) { return _lexer.peek(ch); } |
| 656 | private boolean peekIsId() { return _lexer.peekIsId(); } |
no outgoing calls
no test coverage detected