lua-users home
lua-l archive

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


On Mon, Nov 28, 2011 at 6:00 PM, Vinicius Jarina
<viniciusjarina@gmail.com> wrote:
> As the compilation can be performed as "service" (using APIs). It would be
> interesting to reach all the features made by luac, using only public APIs?

Much of luac's functionality can actually be done with a Lua script -
compiling to byte code.

But the bytecode listings need lookup tables for all the opcodes etc,
which would be burden for the core Lua DLL.

steve d.