| 717 | // https://docs.python.org/3/library/ast.html#ast.Lambda |
| 718 | #[derive(Debug, Clone)] |
| 719 | pub struct Lambda { |
| 720 | pub node: Node, |
| 721 | pub args: Arguments, |
| 722 | pub body: Expression, |
| 723 | } |
| 724 | |
| 725 | // https://docs.python.org/3/library/ast.html#ast.arguments |
| 726 | #[derive(Debug, Clone)] |