| 1084 | // https://docs.python.org/3/library/ast.html#ast.TypeVar |
| 1085 | #[derive(Debug, Clone)] |
| 1086 | pub struct TypeVar { |
| 1087 | pub node: Node, |
| 1088 | pub name: String, |
| 1089 | pub bound: Option<Expression>, |
| 1090 | } |
| 1091 | |
| 1092 | // https://docs.python.org/3/library/ast.html#ast.ParamSpec |
| 1093 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected