| 587 | // https://docs.python.org/3/library/ast.html#ast.YieldFrom |
| 588 | #[derive(Debug, Clone)] |
| 589 | pub struct YieldFrom { |
| 590 | pub node: Node, |
| 591 | pub value: Expression, |
| 592 | } |
| 593 | |
| 594 | // https://docs.python.org/3/library/ast.html#ast.Starred |
| 595 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected