| 791 | // https://docs.python.org/3/library/ast.html#ast.arg |
| 792 | #[derive(Debug, Clone)] |
| 793 | pub struct Arg { |
| 794 | pub node: Node, |
| 795 | pub arg: String, |
| 796 | pub annotation: Option<Expression>, |
| 797 | } |
| 798 | |
| 799 | // https://docs.python.org/3/library/ast.html#ast.IfExp |
| 800 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected