| 725 | // https://docs.python.org/3/library/ast.html#ast.arguments |
| 726 | #[derive(Debug, Clone)] |
| 727 | pub struct Arguments { |
| 728 | pub node: Node, |
| 729 | pub posonlyargs: Vec<Arg>, |
| 730 | pub args: Vec<Arg>, |
| 731 | pub vararg: Option<Arg>, |
| 732 | pub kwonlyargs: Vec<Arg>, |
| 733 | pub kw_defaults: Vec<Option<Expression>>, |
| 734 | pub kwarg: Option<Arg>, |
| 735 | pub defaults: Vec<Expression>, |
| 736 | } |
| 737 | |
| 738 | impl Arguments { |
| 739 | pub fn len(&self) -> usize { |
nothing calls this directly
no outgoing calls
no test coverage detected