commented tracing code

This commit is contained in:
2024-05-01 05:57:08 +02:00
parent 7aabd068ed
commit cdbe3dfc22
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -24,6 +24,7 @@ func newFuncCallTerm(tk *Token, args []*term) *term {
func evalFuncCall(parentCtx ExprContext, self *term) (v any, err error) {
ctx := cloneContext(parentCtx)
name, _ := self.tk.Value.(string)
// fmt.Printf("Call %s(), context: %p\n", name, ctx)
params := make([]any, len(self.children))
for i, tree := range self.children {
var param any