[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Experience with Large Applications in Lua?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 7 Jul 2004 12:52:24 -0300
> Please please make this accessable from the API.
This is implemented using the API. After all, lua.c is a client.
It's just setting a metatable for the global table and adding an "__index"
method to it.
>I would very much like to be able to obtain a list of all uninitialized
>globals so that I can deal with them in the C wrapper and recompile the
script.
You can do that inside your "__index" method.
--lhf