| 56 | // https://docs.python.org/3/library/ast.html#abstract-grammar |
| 57 | #[derive(Debug, Clone)] |
| 58 | pub struct Module { |
| 59 | pub node: Node, |
| 60 | pub body: Vec<Statement>, |
| 61 | } |
| 62 | |
| 63 | // Use box to reduce the enum size |
| 64 | #[derive(Debug, Clone, Is)] |
no outgoing calls
no test coverage detected