(String syntax)
| 1772 | |
| 1773 | // Require an exact match |
| 1774 | private Parser require(String syntax) { require(null, syntax); return this; } |
| 1775 | private <N> N require(N n, String syntax) { |
| 1776 | if (match(syntax)) return n; |
| 1777 | throw errorSyntax(syntax); |
no test coverage detected