| 817 | // https://docs.python.org/3/library/ast.html#ast.JoinedStr |
| 818 | #[derive(Debug, Clone)] |
| 819 | pub struct JoinedStr { |
| 820 | pub node: Node, |
| 821 | pub values: Vec<Expression>, |
| 822 | } |
| 823 | |
| 824 | // https://docs.python.org/3/library/ast.html#ast.If |
| 825 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected