lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, Jun 14, 2011 at 22:59, Florian Weimer <fw@deneb.enyo.de> wrote:
> * Roberto Ierusalimschy:
>> Then should you be able to jump into a block?
> Sure, if it's feasible to implement.  Jumping into the middle of a for
> statement might not be very meaningful, but the effect is still
> precisely defined by the source-to-source translation in the reference
> manual, so I don't see a direct problem with such cases.
For statements create local variable, and, if I've properly understood
the discussion so far (I haven't tested the beta rc1 yet), gotos can't
cross local declarations.

-- Pierre-Yves