[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: settable
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 13 Sep 2002 12:01:43 -0300
> PS: Looking at luaV_[sg]ettable, the interpretation of the different
> types of table metamethods (table/function/...) is IMHO a little
> bit strange anyway...
We were trying to inline some parts of luaV_gettable, because in several
places we know details that luaV_gettable must rediscover by itself
(e.g., OP_GETGLOBAL knows for sure that the "table" is really a table,
and that the index is a string). But the result is not very pretty :-(
(it's still an alpha version...)
-- Roberto