Reorganized functions

This commit is contained in:
2024-06-30 14:14:24 +02:00
parent 7e5d45f17d
commit 27c707b6ff
5 changed files with 99 additions and 86 deletions

View File

@ -6,6 +6,9 @@ import (
)
// CompileFunctionCall executes a function call.
// All call registers must hold the correct parameter values before the function invocation.
// Registers that are in use must be saved if they are modified by the function.
// After the function call, they must be restored in reverse order.
func (f *Function) CompileFunctionCall(expr *expression.Expression) error {
funcName := expr.Children[0].Token.Text()