(
source: Box<str>,
flags: ast::AnyStringFlags,
)
| 288 | } |
| 289 | |
| 290 | pub(crate) fn parse_fstring_literal_element( |
| 291 | source: Box<str>, |
| 292 | flags: ast::AnyStringFlags, |
| 293 | ) -> Box<Wtf8> { |
| 294 | StringParser::new(source, flags) |
| 295 | .parse_fstring_middle() |
| 296 | .unwrap_or_else(|x| match x {}) |
| 297 | } |
no test coverage detected