[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [Suggestion] Passing upvalues to load()
- From: Tim Hill <drtimhill@...>
- Date: Tue, 6 Oct 2015 11:01:03 -0700
> On Oct 5, 2015, at 3:55 PM, Soni L. <fakedme@gmail.com> wrote:
>
> I think load() should, in addition to _ENV, also take a list of upvalues, which are only used when loading bytecode.
>
> When loading bytecode _ENV is assumed to be the first upvalue, upvalue 0, so we just need to make it varargs for the other upvalues.
>
> This reduces the need for debug.upvaluejoin() (or w/e, setupvalue?) when loading bytecode.
>
> --
> Disclaimer: these emails may be made public at any given time, with or without reason. If you don't agree with this, DO NOT REPLY.
>
>
Why only when loading bytecode? Post-compilation, there is no difference between bytecode and source code.
—Tim