From 434ddee73332bcdd66aec1f683a819b28e70b158 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 6 May 2024 04:14:54 +0200 Subject: [PATCH] operator-context.go: changed priPrePost with priIncDec --- operator-context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator-context.go b/operator-context.go index 20b1e1d..68de8a9 100644 --- a/operator-context.go +++ b/operator-context.go @@ -11,7 +11,7 @@ func newContextTerm(tk *Token) (inst *term) { tk: *tk, children: make([]*term, 0, 1), position: posPrefix, - priority: priPrePost, + priority: priIncDec, evalFunc: evalContextValue, } }