| 1441 | } |
| 1442 | |
| 1443 | common_peg_parser common_peg_parser_builder::marker() { |
| 1444 | auto sharp_bracket_parser = literal("<") + until(">") + literal(">"); |
| 1445 | auto square_bracket_parser = literal("[") + until("]") + literal("]"); |
| 1446 | return choice({ sharp_bracket_parser, square_bracket_parser }); |
| 1447 | } |
| 1448 | |
| 1449 | common_peg_parser common_peg_parser_builder::json_member(const std::string & key, const common_peg_parser & p) { |
| 1450 | auto ws = space(); |
no outgoing calls