Implemented Value interface
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user