lua-users home
lua-l archive

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


> For the parser, I don't understand clearly the 'active' local variables.
> Does it include the current block's variables?

Yes. It includes all variables that are active (that is, alive at the
stack) at that point in the code.  (Contrast that with 'nlocvars', which
counts all local variables ever declared in a function.)

-- Roberto