(&mut self, value: &ast::TStringValue)
| 1598 | } |
| 1599 | |
| 1600 | fn unparse_t_string_value(&mut self, value: &ast::TStringValue) { |
| 1601 | let mut first = true; |
| 1602 | for t_string in value { |
| 1603 | self.p_delim(&mut first, " "); |
| 1604 | self.unparse_interpolated_string(&t_string.elements, t_string.flags.into()); |
| 1605 | } |
| 1606 | } |
| 1607 | |
| 1608 | fn unparse_alias(&mut self, alias: &Alias) { |
| 1609 | self.p_id(&alias.name); |
no test coverage detected