| 450 | |
| 451 | #[derive(Debug)] |
| 452 | pub(super) struct FormattedValue { |
| 453 | value: Box<ast::Expr>, |
| 454 | conversion: ast::ConversionFlag, |
| 455 | format_spec: Option<Box<JoinedStr>>, |
| 456 | range: TextRange, |
| 457 | } |
| 458 | |
| 459 | // constructor |
| 460 | impl Node for FormattedValue { |
no outgoing calls
no test coverage detected