[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Latent functions
- From: Roberto Ierusalimschy <rieru@...>
- Date: Mon, 3 Dec 2001 14:01:34 -0600 (CST)
"Thatcher Ulrich" <tu@tulrich.com> writes:
>
> I guess what's needed is a power-patch to make OP_CALL non-recursive,
It is important to remember that the recursive call in luaV_execute
happens not only via OP_CALL. All tag methods may result in luaV_execute
calling itself, and this may happen in several opcodes (OP_GETTABLE,
OP_SETTABLE, OP_ADD, etc.).
-- Roberto