| 687 | // https://docs.python.org/3/library/ast.html#ast.Await |
| 688 | #[derive(Debug, Clone)] |
| 689 | pub struct Await { |
| 690 | pub node: Node, |
| 691 | pub value: Expression, |
| 692 | } |
| 693 | |
| 694 | // https://docs.python.org/3/library/ast.html#ast.Compare |
| 695 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected