(String syntax)
| 885 | |
| 886 | // Require an exact match |
| 887 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 888 | private <N> N require(N n, String syntax) { |
| 889 | if (match(syntax)) return n; |
| 890 | throw errorSyntax(syntax); |
no test coverage detected