| 216 | // https://docs.python.org/3/library/ast.html#ast.Import |
| 217 | #[derive(Debug, Clone)] |
| 218 | pub struct Import { |
| 219 | pub node: Node, |
| 220 | pub names: Vec<Alias>, |
| 221 | } |
| 222 | |
| 223 | // https://docs.python.org/3/library/ast.html#ast.alias |
| 224 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected