Closed Wha-The closed 1 month ago
If you try to parse
if a == b == c then end
it raises a syntax error
luaparser.builder.SyntaxException: Error: Expecting one of 'and', 'not', 'or', 'then', '+', '-', '*', '/', '//', '%', '^', '#', '&', '|', '~', '>>', '<<', '(', '{', '[', ':', '..', '.', STRING at line 1, column 13
However if you parse the equivelent
if (a == b) == c then end
then it works just fine.
found this bug whilst trying to parse this
if aJ == aK == (aI.A ~= 0) then
Fixed on master, will release a version soon
If you try to parse
it raises a syntax error
However if you parse the equivelent
then it works just fine.
found this bug whilst trying to parse this