(String syntax)
| 1730 | |
| 1731 | // Return true and skip if "syntax" is next in the stream. |
| 1732 | private boolean match (String syntax) { return _lexer.match (syntax); } |
| 1733 | // Match must be "exact", not be followed by more id letters |
| 1734 | private boolean matchx(String syntax) { return _lexer.matchx(syntax); } |
| 1735 | private boolean matchOp(char c0 ) { return _lexer.matchOp(c0); } |
no outgoing calls
no test coverage detected