(Parser p)
| 374 | return this; |
| 375 | } |
| 376 | public Parser repeat(Parser p) { |
| 377 | elements.add(new Repeat(p, false)); |
| 378 | return this; |
| 379 | } |
| 380 | public Parser expression(Parser subexp, Operators operators) { |
| 381 | elements.add(new Expr(null, subexp, operators)); |
| 382 | return this; |
no test coverage detected