Más acciones
m 2 revisions imported from w:Module:No_globals: blame User:Barkeep49 |
|||
Línea 2: | Línea 2: | ||
function mt.__index (t, k) | function mt.__index (t, k) | ||
if k ~= 'arg' then | if k ~= 'arg' then | ||
error('Tried to read nil global ' .. tostring(k), 2) | |||
error | |||
end | end | ||
return nil | return nil | ||
Línea 9: | Línea 8: | ||
function mt.__newindex(t, k, v) | function mt.__newindex(t, k, v) | ||
if k ~= 'arg' then | if k ~= 'arg' then | ||
error | error('Tried to write global ' .. tostring(k), 2) | ||
end | end | ||
rawset(t, k, v) | rawset(t, k, v) | ||
end | end | ||
setmetatable(_G, mt) | setmetatable(_G, mt) |
Revisión del 17:14 17 feb 2022
La documentación para este módulo puede ser creada en Módulo:No globals/doc