All the unimplementeds are gone!

This commit is contained in:
2025-11-11 13:42:19 -08:00
parent 45e49a4c84
commit c795172692
2 changed files with 177 additions and 10 deletions

View File

@@ -90,14 +90,15 @@ pub struct FunctionArg {
pub struct ValueDef {
pub name: Name,
pub location: Location,
pub mtype: Option<Type>,
pub value: Expression,
}
#[derive(Debug)]
pub struct OperatorDef {
pub operator_name: Name,
pub location: Location,
pub function_name: Name,
location: Location,
}
#[derive(Debug)]