| 631 | // https://docs.python.org/3/library/ast.html#ast.comprehension |
| 632 | #[derive(Debug, Clone)] |
| 633 | pub struct Comprehension { |
| 634 | pub node: Node, |
| 635 | pub target: Expression, |
| 636 | pub iter: Expression, |
| 637 | pub ifs: Vec<Expression>, |
| 638 | pub is_async: bool, |
| 639 | } |
| 640 | |
| 641 | // https://docs.python.org/3/library/ast.html#ast.Attribute |
| 642 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected