(String syntax)
| 978 | |
| 979 | // Require an exact match |
| 980 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 981 | private <N> N require(N n, String syntax) { |
| 982 | if (match(syntax)) return n; |
| 983 | throw errorSyntax(syntax); |
no test coverage detected