[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [patch] lvm.c - new table scope support
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 5 Feb 2008 09:18:10 -0200
> I have a new patch that allows table constructs to enclose a scope
> so that variables used inside the table have special meaning.
Interesting but strange: it uses a run-time feature (the __scope metamethod)
to implement name resolution that only occurs once, at table creation.
Also, strictly speaking, you could argue that the __newindex metamethod
could work just as well in that case. There'd be no need for a separate
metamethod; just extend its semantics to table creation.
--lhf