LuaToolkit icon indicating copy to clipboard operation
LuaToolkit copied to clipboard

missing `end` in decompilation

Open ferib opened this issue 2 years ago • 0 comments

When doing something like below it won't properly close the if chain.

if A then
   return 0;
elseif B then
   return 1;
elseif C then
    return 2;
end

ferib avatar Feb 14 '23 22:02 ferib