| 1092 | } |
| 1093 | |
| 1094 | common_peg_parser common_peg_parser::operator|(const common_peg_parser & other) const { |
| 1095 | return builder_.choice({id_, other.id_}); |
| 1096 | } |
| 1097 | |
| 1098 | common_peg_parser common_peg_parser::operator<<(const common_peg_parser & other) const { |
| 1099 | return builder_.sequence({id_, builder_.space(), other.id_}); |