Implemented Value interface

This commit is contained in:
2025-02-28 12:15:19 +01:00
parent 31423ccc08
commit b67361c035
36 changed files with 194 additions and 153 deletions

View File

@ -21,7 +21,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
return err
}
typ, err := f.ExpressionToRegister(right, variable.Register)
typ, err := f.ExpressionToRegister(right, variable.Value.Register)
if err != nil {
return err
@ -35,7 +35,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
typ = types.Int
}
variable.Type = typ
variable.Value.Typ = typ
f.AddVariable(variable)
return nil
}
@ -63,10 +63,10 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
}
if count < len(types) {
variable.Type = types[count]
variable.Value.Typ = types[count]
}
f.RegisterRegister(asm.MOVE, variable.Register, f.CPU.Output[count])
f.RegisterRegister(asm.MOVE, variable.Value.Register, f.CPU.Output[count])
f.AddVariable(variable)
count++
return nil