(String syntax)
| 1478 | |
| 1479 | // Require an exact match |
| 1480 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 1481 | private <N> N require(N n, String syntax) { |
| 1482 | if (match(syntax)) return n; |
| 1483 | throw errorSyntax(syntax); |
no test coverage detected