| 75 | |
| 76 | #[derive(Debug, PartialEq, Clone, Serialize, Deserialize, JsonSchema)] |
| 77 | pub struct ModuleDef { |
| 78 | pub name: String, |
| 79 | pub stmts: Vec<Stmt>, |
| 80 | } |
| 81 | |
| 82 | #[derive(Debug, PartialEq, Clone, Serialize, Deserialize, JsonSchema)] |
| 83 | pub struct ImportDef { |