Phase 5: Editor und inkrementellen Compiler implementieren und archivieren

This commit is contained in:
2026-09-06 17:58:26 +02:00
parent df85a4b7b2
commit 9c85349a4d
36 changed files with 2993 additions and 247 deletions

View File

@@ -673,7 +673,7 @@ pub fn event_params(event: &str) -> Option<&'static [(&'static str, EventParamTy
})
}
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq)]
pub struct FormObject {
pub name: String,
pub class: ObjectClass,
@@ -682,7 +682,7 @@ pub struct FormObject {
pub array: bool,
}
#[derive(Debug, Clone, Default)]
#[derive(Debug, Clone, Default, PartialEq)]
pub struct FormCatalog {
pub objects: Vec<FormObject>,
}