From bffc031ea83c7176aac3d3828de0060c6630140c Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Tue, 6 Jan 2026 19:02:29 +0100 Subject: fix: correct and simplify parsing of expressions. The expressions were parsed from right to left, and it was incorrect and cumbersome. Now they are processed from left to right, with a simpler and correct handling of precedence rules. The vm function call syntax has been changed to set the function before the input arguments on the stack, as to follow the declaring order in languages. --- .golangci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.golangci.yaml') diff --git a/.golangci.yaml b/.golangci.yaml index ade2ad1..f21704a 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -8,7 +8,7 @@ linters: - govet - ineffassign - misspell - - modernize +# - modernize - perfsprint - prealloc - predeclared -- cgit v1.2.3