| 858 | // https://docs.python.org/3/library/ast.html#ast.AsyncFor |
| 859 | #[derive(Debug, Clone)] |
| 860 | pub struct AsyncFor { |
| 861 | pub node: Node, |
| 862 | pub target: Expression, |
| 863 | pub iter: Expression, |
| 864 | pub body: Vec<Statement>, |
| 865 | pub orelse: Vec<Statement>, |
| 866 | } |
| 867 | |
| 868 | // https://docs.python.org/3/library/ast.html#ast.With |
| 869 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected