()
| 531 | } |
| 532 | |
| 533 | fn string<'a>() -> impl Parser<'a, ParserInput<'a>, Literal, ParserError<'a>> { |
| 534 | quoted_string(true).map(Literal::String) |
| 535 | } |
| 536 | |
| 537 | fn raw_string<'a>() -> impl Parser<'a, ParserInput<'a>, Literal, ParserError<'a>> { |
| 538 | just("r") |
no test coverage detected