(String syntax)
| 1789 | |
| 1790 | // Return true and skip if "syntax" is next in the stream. |
| 1791 | private boolean match (String syntax) { return _lexer.match (syntax); } |
| 1792 | // Match must be "exact", not be followed by more id letters |
| 1793 | private boolean matchx(String syntax) { return _lexer.matchx(syntax); } |
| 1794 | private boolean matchOp(char c0 ) { return _lexer.matchOp(c0); } |
no outgoing calls
no test coverage detected