| 876 | // https://docs.python.org/3/library/ast.html#ast.AsyncWith |
| 877 | #[derive(Debug, Clone)] |
| 878 | pub struct AsyncWith { |
| 879 | pub node: Node, |
| 880 | pub items: Vec<WithItem>, |
| 881 | pub body: Vec<Statement>, |
| 882 | } |
| 883 | |
| 884 | // https://docs.python.org/3/library/ast.html#ast.withitem |
| 885 | // can be used for With |
nothing calls this directly
no outgoing calls
no test coverage detected