From fcced6149f40897b7433f34cc70620f32e9487df Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 6 May 2024 04:14:03 +0200 Subject: [PATCH] operator-post-inc.go: changed priPrePost with priIncDec --- operator-post-inc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator-post-inc.go b/operator-post-inc.go index 2b4d5ad..94f87f5 100644 --- a/operator-post-inc.go +++ b/operator-post-inc.go @@ -12,7 +12,7 @@ func newPostIncTerm(tk *Token) *term { parent: nil, children: make([]*term, 0, 1), position: posPostfix, - priority: priPrePost, + priority: priIncDec, evalFunc: evalPostInc, } }