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