(self)
| 441 | } |
| 442 | |
| 443 | fn parse(self) -> Result<StringType, LexicalError> { |
| 444 | if self.flags.is_byte_string() { |
| 445 | self.parse_bytes() |
| 446 | } else { |
| 447 | self.parse_string() |
| 448 | } |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | pub(crate) fn parse_string_literal( |
no test coverage detected