Switched to pointer receivers for values

This commit is contained in:
2025-03-01 18:38:00 +01:00
parent 8ff6faa310
commit 4428b09de2
17 changed files with 62 additions and 62 deletions

View File

@ -6,14 +6,14 @@ import (
)
// EvaluateCall evaluates a function call.
func (f *Function) EvaluateCall(expr *expression.Expression) (eval.Register, error) {
func (f *Function) EvaluateCall(expr *expression.Expression) (*eval.Register, error) {
typ, err := f.CompileCall(expr)
if err != nil {
return eval.Register{}, err
return nil, err
}
value := eval.Register{Register: f.CPU.Output[0]}
value := &eval.Register{Register: f.CPU.Output[0]}
if len(typ) > 0 {
value.Typ = typ[0]