(String syntax)
| 683 | |
| 684 | // Require an exact match |
| 685 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 686 | private <N> N require(N n, String syntax) { |
| 687 | if (match(syntax)) return n; |
| 688 | throw errorSyntax(syntax); |
no test coverage detected