lua-users home
lua-l archive

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


Benjamin Segovia wrote:
> Unfortunately, no sucess. I encapsulated basic blocks into functions
> and add return statement instead of breaks. Exactly the same result.
> As I am not sure of what to do next, please find here a dump of the
> function I tried to compile. I just extracted it and made a
> stand-alone file with it. Mike, if you have an idea of what is going
> on.

First, you still have that while loop in there. Second, you're
creating a new closure for every iteration. That's nonsense.
Reread my messages and do exactly what I told you and nothing
else.

--Mike