Improved type system checks

This commit is contained in:
2025-02-10 14:09:27 +01:00
parent b2a9dc3aa7
commit 371059d08a
9 changed files with 49 additions and 61 deletions

View File

@ -40,7 +40,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
}
count := 0
called, err := f.CompileCall(right)
types, err := f.CompileCall(right)
if err != nil {
return err
@ -53,8 +53,8 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
return err
}
if called != nil {
variable.Type = called.Output[count].Type
if count < len(types) {
variable.Type = types[count]
}
f.RegisterRegister(asm.MOVE, variable.Register, f.CPU.Output[count])