| 1099 | // https://docs.python.org/3/library/ast.html#ast.TypeVarTuple |
| 1100 | #[derive(Debug, Clone)] |
| 1101 | pub struct TypeVarTuple { |
| 1102 | pub node: Node, |
| 1103 | pub name: String, |
| 1104 | } |
| 1105 | |
| 1106 | // https://docs.python.org/3/library/ast.html#ast.TypeAlias |
| 1107 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected