Module:No globals: திருத்தங்களுக்கு இடையிலான வேறுபாடு
Jump to navigation
Jump to search
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
don't bother saving old __index or __newindex |
setting doesn't need exception for name |
||
| வரிசை 7: | வரிசை 7: | ||
end |
end |
||
function mt.__newindex(t, k, v) |
function mt.__newindex(t, k, v) |
||
if |
if k ~= 'arg' then |
||
error('Tried to write global ' .. tostring(k), 2) |
error('Tried to write global ' .. tostring(k), 2) |
||
end |
end |
||
20:48, 23 ஏப்பிரல் 2014 இல் நிலவும் திருத்தம்
| This Lua module is used on many pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
வார்ப்புரு:Shared Template Warning
local mt = getmetatable(_G) or {}
function mt.__index (t, k)
if k ~= 'name' and k ~= 'arg' then
error('Tried to read nil global ' .. tostring(k), 2)
end
return nil
end
function mt.__newindex(t, k, v)
if k ~= 'arg' then
error('Tried to write global ' .. tostring(k), 2)
end
rawset(t, k, v)
end
setmetatable(_G, mt)