You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
local a,b;
while a and b do
f()
end
while a do
if b then
f()
end
end
while a do
while b do
f()
end
end
decompiled output was :
local a, b = nil
repeat
until a and b
f()
end
while a and b do
f()
end
while a and b do
f()
end
end
Original issue reported on code.google.com by virusc...@gmail.com on 7 Jul 2013 at 4:36
Original issue reported on code.google.com by
virusc...@gmail.comon 7 Jul 2013 at 4:36