| 1046 | |
| 1047 | #[derive(Debug, Clone)] |
| 1048 | pub struct MatchClass { |
| 1049 | pub node: Node, |
| 1050 | pub cls: Expression, |
| 1051 | pub patterns: Vec<MatchPattern>, |
| 1052 | pub kwd_attrs: Vec<String>, |
| 1053 | pub kwd_patterns: Vec<MatchPattern>, |
| 1054 | } |
| 1055 | |
| 1056 | // https://docs.python.org/3/library/ast.html#ast-type-params |
| 1057 | #[derive(Debug, Clone)] |