| 1088 | } |
| 1089 | |
| 1090 | common_peg_parser common_peg_parser::operator+(const common_peg_parser & other) const { |
| 1091 | return builder_.sequence({id_, other.id_}); |
| 1092 | } |
| 1093 | |
| 1094 | common_peg_parser common_peg_parser::operator|(const common_peg_parser & other) const { |
| 1095 | return builder_.choice({id_, other.id_}); |