Module:No globals: Difference between revisions
Jump to navigation
Jump to search
m>Jackmcbarn ←Created page with 'local mt = getmetatable(_G) or {} local oldIndex = mt.__index or function() return nil end mt.__index = function(t, k) if k ~= 'name' and k ~= 'arg' then erro...' |
MeowyCats2 (talk | contribs) m 48 revisions imported |
||
(50 intermediate revisions by 36 users not shown) | |||
Line 1: | Line 1: | ||
local mt = getmetatable(_G) or {} | local mt = getmetatable(_G) or {} | ||
function mt.__index (t, k) | |||
mt.__index | if k ~= 'arg' then | ||
if | -- perf optimization here and below: do not load Module:TNT unless there is an error | ||
error(' | error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) | ||
end | end | ||
return | return nil | ||
end | end | ||
function mt.__newindex(t, k, v) | function mt.__newindex(t, k, v) | ||
if | if k ~= 'arg' then | ||
error(' | error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) | ||
end | end | ||
rawset(t, k, v) | |||
end | end | ||
setmetatable(_G, mt) | setmetatable(_G, mt) |