(String syntax)
| 666 | |
| 667 | // Require an exact match |
| 668 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 669 | private <N> N require(N n, String syntax) { |
| 670 | if (match(syntax)) return n; |
| 671 | throw errorSyntax(syntax); |
no test coverage detected