CallFunction() has been replaced by three new functions:
CallFunctionByTerm(), CallFunctionByArgs() and CallFunctionByParams()
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ func newFuncCallTerm(tk *Token, args []*term) *term {
|
||||
|
||||
func evalFuncCall(ctx ExprContext, opTerm *term) (v any, err error) {
|
||||
name, _ := opTerm.tk.Value.(string)
|
||||
v, err = CallFunction(ctx, name, opTerm)
|
||||
v, err = CallFunctionByTerm(ctx, name, opTerm)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user