lua-users home
lua-l archive

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


> In the FORLOOP implementation in lvm.c the index is updated as shown
> below (and similarly for floating point):
> 
>                 setivalue(ra, idx);  /* update internal index... */
>                 setivalue(ra + 3, idx);  /* ...and external index */
> 
> It seems that only the value needs to be updated - not the type, as
> the type is already set by the FORPREP instruction. Is that correct?

Yes.

-- Roberto