(String syntax)
| 671 | |
| 672 | // Require an exact match |
| 673 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 674 | private <N> N require(N n, String syntax) { |
| 675 | if (match(syntax)) return n; |
| 676 | throw errorSyntax(syntax); |
no test coverage detected