py-lua-parser
py-lua-parser copied to clipboard
wrong precedence parsing the length operation (#)
#tab+1
is parsed to
LengthOp(AddOp(tab,1))
It should be
AddOp(LengthOp(tab), 1)
as far as I can tell, this is a duplicate of #38
Fixed on master, will release a version soon