| 1271 | } |
| 1272 | |
| 1273 | common_peg_parser common_peg_parser_builder::double_quoted_string() { |
| 1274 | return rule("double-quoted-string", [this]() { |
| 1275 | return sequence({literal("\""), string_content('"'), literal("\""), space()}); |
| 1276 | }); |
| 1277 | } |
| 1278 | |
| 1279 | common_peg_parser common_peg_parser_builder::single_quoted_string() { |
| 1280 | return rule("single-quoted-string", [this]() { |
no outgoing calls