()
| 16 | Parser postfix = rule().sep("(").maybe(args).sep(")"); |
| 17 | |
| 18 | public FuncParser() { |
| 19 | reserved.add(")"); |
| 20 | primary.repeat(postfix); |
| 21 | simple.option(args); |
| 22 | program.insertChoice(def); |
| 23 | } |
| 24 | } |
nothing calls this directly
no test coverage detected