lua-users home
lua-l archive

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


On Wed, Sep 30, 2009 at 4:40 PM, Mark Hamburg <mark@grubmah.com> wrote:
There are already have ways to detect global variable accesses at compile time

Notice that current tools won't help you here:your chunk is embedded as a bytecode string (or maybe a source string), and therefore contains no variable, global or local. You could probably modify an existing tool to recursively check strings constants starting with "\027Lua", though.