| 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_}); |
| 890 | } |
| 891 | |
| 892 | common_peg_parser common_peg_parser::operator+(const char * str) const { |
| 893 | return *this + builder_.literal(str); |