(String syntax)
| 357 | private boolean match (String syntax) { return _lexer.match (syntax); } |
| 358 | // Match must be "exact", not be followed by more id letters |
| 359 | private boolean matchx(String syntax) { return _lexer.matchx(syntax); } |
| 360 | // Return true and do NOT skip if 'ch' is next |
| 361 | private boolean peek(char ch) { return _lexer.peek(ch); } |
| 362 |
no outgoing calls
no test coverage detected