blob: c57c3008e6767c240b4ab39d1f57198697621cd5 (
plain) (
blame)
1
2
3
4
5
6
|
-- black hole object
-- you can access and call and set things however you want
-- it will never do anything
local f = function (self) return self end
return setmetatable({}, {__call = f, __index = f, __newindex = f})
|