readonly.lua 181 B

123456789101112
  1. local readonly = function (t)
  2. local meta = {
  3. __index = t,
  4. __newindex = function ()
  5. error("table is readonly")
  6. end
  7. }
  8. return setmetatable({}, meta)
  9. end
  10. return readonly