(String syntax)
| 775 | |
| 776 | // Require an exact match |
| 777 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 778 | private <N> N require(N n, String syntax) { |
| 779 | if (match(syntax)) return n; |
| 780 | throw errorSyntax(syntax); |
no test coverage detected