(&mut self, s: &str)
| 618 | } |
| 619 | |
| 620 | fn unparse_fstring_str(&mut self, s: &str) -> fmt::Result { |
| 621 | let s = s.replace('{', "{{").replace('}', "}}"); |
| 622 | self.p(&s) |
| 623 | } |
| 624 | |
| 625 | fn unparse_fstring(&mut self, value: &ast::FStringValue) -> fmt::Result { |
| 626 | self.p("f")?; |
no test coverage detected