This commit is contained in:
2026-04-17 00:09:00 -04:00
parent 83edad0cd8
commit e5ae506a84
11 changed files with 161 additions and 52 deletions
+14
View File
@@ -0,0 +1,14 @@
use super::*;
pub struct Struct {
name: String,
fields: Vec<Field>,
}
impl Parsable for Struct {
fn parse(ctx: &mut ParseCtx) -> Result<Self, CompilerMsg> {
}
}
pub struct Field {
}