| 1277 | } |
| 1278 | |
| 1279 | common_peg_parser common_peg_parser_builder::single_quoted_string() { |
| 1280 | return rule("single-quoted-string", [this]() { |
| 1281 | return sequence({literal("'"), string_content('\''), literal("'"), space()}); |
| 1282 | }); |
| 1283 | } |
| 1284 | |
| 1285 | common_peg_parser common_peg_parser_builder::quoted_string() { |
| 1286 | return rule("quoted-string", [this]() { |
no outgoing calls