(String syntax)
| 355 | |
| 356 | // Return true and skip if "syntax" is next in the stream. |
| 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 |
no outgoing calls
no test coverage detected