| 878 | } |
| 879 | |
| 880 | common_peg_parser common_peg_parser::operator+(const common_peg_parser & other) const { |
| 881 | return builder_.sequence({id_, other.id_}); |
| 882 | } |
| 883 | |
| 884 | common_peg_parser common_peg_parser::operator|(const common_peg_parser & other) const { |
| 885 | return builder_.choice({id_, other.id_}); |