Thread: Window Chaining
View Single Post
03/07/14, 11:58 PM   #11
Lodur
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 108
Originally Posted by SinusPi View Post
Actually, there's a technicality:

Code:
 -- tmp = T.__index(T, SetHidden) -- 1st anon function runs and returns the 2nd anon function
This here isn't really an anon function - it's a "normal" function in the metatable. You can get it with getmetatable(CHAIN(boo)).__index (if you'd ever need it, of course).
Ah yes. I agree. Made me search for the exact definition too.
  Reply With Quote