[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [patch] continue statement
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 12 Sep 2005 15:58:19 -0300
> I find that without a "continue" statement some loops soon have
> deeply nested if/else statements in them. This patch adds
> them to Lua 5.1-alpha. It's also on the PowerPatches page of
> the Lua wiki.
I am afraid it may have a bug. If you "continue" to out of a block, you
may need to close pending upvalues. See 'breakstat' for details.
-- Roberto