(String syntax)
| 1604 | |
| 1605 | // Require an exact match |
| 1606 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 1607 | private <N> N require(N n, String syntax) { |
| 1608 | if (match(syntax)) return n; |
| 1609 | throw errorSyntax(syntax); |
no test coverage detected