lua-users home
lua-l archive

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


>It may be rare in your code. It's common in mine. Styles vary, of 
>course.

Definitely ;)

>
>> Again, not so sure I agree with putting redundant in demeaning quotes 
>> there ;)
>
>It's no more demeaning than the use of the word "rare", surely? But it 
>was
>actually just a quote. I'd say the function call is not so much 
>redundant as
>optimizable, much like the extra function call in a curried closure, or
>indeed any function call which could be inlined. That is, it is 
>semantically
>a function call but a cleverer compiler (or runtime) might well be able 
>to
>optimize it away.

That's definitely something I'd like to see in a lua compiler (or more probably,
jit-er).  Would be quite a challenge to inline metamethods though; without
massive amounts of static analysis you would have to look up the metamethod every
time to ensure that it's still the same as the inlined version.

Sorry about the use of the word rare ^^

>
>> What in your opinion
>> would be the best way to handle __newindex regarding proxys?
>
>__newindex should certainly ignore __proxy. It would be possible to 
>define
>a __newproxy as well, although I don't know how much it would be used. 
>The
>advantage would be the separation of call from (set)index, as I 
>mentioned
>earlier.

That was my thoughts.  In fact, newproxy might be so infrequently used to leave
it up to the user to use workarounds via newindex functions.  Dunno =)

So in summary, you'd recommend: (Please correct me if I'm wrong)

Get table, before returning nil to (recursively) call self with the __proxy
table, if it exists. If __proxy also yields nil, to attempt calling the __index
metamethod; be it a function or a table with a __call metamethod. For
compatibility would be best to attempt to index the __index metamethod if it's a
table though.

Set table, before setting a previously nil key would ignore the __proxy
metamethod/table and simple call the __newindex if it exists.

Thanks again.

- Alex