(Parser p)
| 370 | return this; |
| 371 | } |
| 372 | public Parser option(Parser p) { |
| 373 | elements.add(new Repeat(p, true)); |
| 374 | return this; |
| 375 | } |
| 376 | public Parser repeat(Parser p) { |
| 377 | elements.add(new Repeat(p, false)); |
| 378 | return this; |
no test coverage detected