merge: solved a lot of conflicts caused by an incorect commit removal

This commit is contained in:
2024-04-13 05:47:10 +02:00
8 changed files with 58 additions and 10 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ func (self *ast) eval(ctx ExprContext, preset bool) (result any, err error) {
if self.forest != nil {
for _, root := range self.forest {
if result, err = root.compute(ctx); err == nil {
ctx.SetVar(ControlLastResult, result)
ctx.setVar(ControlLastResult, result)
} else {
//err = fmt.Errorf("error in expression nr %d: %v", i+1, err)
break