lua-users home
lua-l archive

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


| Has anyone made a utility that can export Lua:s bytecode in text-form?
| (disassembler)

The luac tool (provided in Lua's distribution) will compile code and display it
as VM code.

There is a script on the wiki to merge this VM code with the original source to
make it easier to read:
http://lua-users.org/wiki/VmMerge

N