| 580 | // https://docs.python.org/3/library/ast.html#ast.Yield |
| 581 | #[derive(Debug, Clone)] |
| 582 | pub struct Yield { |
| 583 | pub node: Node, |
| 584 | pub value: Option<Expression>, |
| 585 | } |
| 586 | |
| 587 | // https://docs.python.org/3/library/ast.html#ast.YieldFrom |
| 588 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected