(self)
| 503 | } |
| 504 | |
| 505 | fn parse(self) -> Result<StringType, LexicalError> { |
| 506 | if self.flags.is_byte_string() { |
| 507 | self.parse_bytes() |
| 508 | } else { |
| 509 | self.parse_string() |
| 510 | } |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | pub(crate) fn parse_string_literal( |
no test coverage detected