(String syntax)
| 369 | |
| 370 | // Require an exact match |
| 371 | private void require(String syntax) { require(null, syntax); } |
| 372 | private Node require(Node n, String syntax) { |
| 373 | if (match(syntax)) return n; |
| 374 | throw errorSyntax(syntax); |
no test coverage detected