| 808 | // https://docs.python.org/3/library/ast.html#ast.FormattedValue |
| 809 | #[derive(Debug, Clone)] |
| 810 | pub struct FormattedValue { |
| 811 | pub node: Node, |
| 812 | pub value: Expression, |
| 813 | pub conversion: i32, |
| 814 | pub format_spec: Option<Expression>, |
| 815 | } |
| 816 | |
| 817 | // https://docs.python.org/3/library/ast.html#ast.JoinedStr |
| 818 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected