py-lua-parser icon indicating copy to clipboard operation
py-lua-parser copied to clipboard

wrong precedence parsing the length operation (#)

Open tony-song opened this issue 1 year ago • 1 comments

#tab+1 is parsed to LengthOp(AddOp(tab,1))

It should be AddOp(LengthOp(tab), 1)

tony-song avatar Apr 03 '23 08:04 tony-song