| 241 | // https://docs.python.org/3/library/ast.html#ast.ImportFrom |
| 242 | #[derive(Debug, Clone)] |
| 243 | pub struct ImportFrom { |
| 244 | pub node: Node, |
| 245 | pub module: String, |
| 246 | pub names: Vec<Alias>, |
| 247 | pub level: usize, |
| 248 | } |
| 249 | |
| 250 | // https://docs.python.org/3/library/ast.html#ast.Global |
| 251 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected