| 799 | // https://docs.python.org/3/library/ast.html#ast.IfExp |
| 800 | #[derive(Debug, Clone)] |
| 801 | pub struct IfExp { |
| 802 | pub node: Node, |
| 803 | pub test: Expression, |
| 804 | pub body: Expression, |
| 805 | pub orelse: Expression, |
| 806 | } |
| 807 | |
| 808 | // https://docs.python.org/3/library/ast.html#ast.FormattedValue |
| 809 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected