| 882 | } |
| 883 | |
| 884 | common_peg_parser common_peg_parser::operator|(const common_peg_parser & other) const { |
| 885 | return builder_.choice({id_, other.id_}); |
| 886 | } |
| 887 | |
| 888 | common_peg_parser common_peg_parser::operator<<(const common_peg_parser & other) const { |
| 889 | return builder_.sequence({id_, builder_.space(), other.id_}); |