| 669 | // https://docs.python.org/3/library/ast.html#ast.Call |
| 670 | #[derive(Debug, Clone)] |
| 671 | pub struct Call { |
| 672 | pub node: Node, |
| 673 | pub func: Expression, |
| 674 | pub args: Vec<Expression>, |
| 675 | pub keywords: Vec<Keyword>, |
| 676 | pub starargs: Option<Expression>, |
| 677 | pub kwargs: Option<Expression>, |
| 678 | } |
| 679 | |
| 680 | #[derive(Debug, Clone)] |
| 681 | pub struct Keyword { |