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