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