(String syntax)
| 1201 | |
| 1202 | // Require an exact match |
| 1203 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 1204 | private <N> N require(N n, String syntax) { |
| 1205 | if (match(syntax)) return n; |
| 1206 | throw errorSyntax(syntax); |
no test coverage detected