| 250 | // https://docs.python.org/3/library/ast.html#ast.Global |
| 251 | #[derive(Debug, Clone)] |
| 252 | pub struct Global { |
| 253 | pub node: Node, |
| 254 | pub names: Vec<String>, |
| 255 | } |
| 256 | |
| 257 | // https://docs.python.org/3/library/ast.html#ast.Nonlocal |
| 258 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected