(String syntax)
| 1458 | |
| 1459 | // Return true and skip if "syntax" is next in the stream. |
| 1460 | private boolean match (String syntax) { return _lexer.match (syntax); } |
| 1461 | // Match must be "exact", not be followed by more id letters |
| 1462 | private boolean matchx(String syntax) { return _lexer.matchx(syntax); } |
| 1463 | private boolean matchOpx(char c0, char c1) { return _lexer.matchOpx(c0,c1); } |
no outgoing calls
no test coverage detected