[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] luaproc 1.0-4
- From: Mason Bogue <scythe+lua@...>
- Date: Mon, 5 Oct 2015 20:49:17 -0700
>> This is version 1.0-4. It supports Lua **functions*** as arguments to
>> create new Lua processes - previously it only supported Lua code strings -
>> and fixes a few bugs.
:D nice work!
> What happens when functions have upvalues?
Only constant upvalues are allowed (number, string, boolean); others
raise an error. Nested upvalues could get really hairy, after all. See
luaproc_copyupvalues() in luaproc.c.