[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Patch for continue in 5.1
- From: Edgar Toernig <froese@...>
- Date: Fri, 12 Jun 2009 00:43:58 +0200
> Patch against 5.1.4: http://www.corsix.org/luacontinue/continue.patch
> Test cases which should all work:
> http://www.corsix.org/luacontinue/continue_valid.lua
> Test cases which should not work:
> http://www.corsix.org/luacontinue/continue_invalid.lua
Nice patch. Could you test this case, please:
repeat
do
local p = 1
continue
end
local q = 2
until q == 1
print "FAIL"
Ciao, ET.