lua-users home
lua-l archive

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


While reviewing the list archive, I've come across some old messages about the
need to have access to the source of compiled functions.
It may have gone unnoticed that Lua 3.2 now supports this: the complete string
sent to lua_dostring is now kept inside Lua, and can be retrieved with the
debug interface.
In this way, code browsers and debuggers can show the complete text of each
function, or group of functions.
--lhf