Module:No globals: திருத்தங்களுக்கு இடையிலான வேறுபாடு
Jump to navigation
Jump to search
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
setting doesn't need exception for name |
imported>Sukanthi சி 9 திருத்தங்கள் இறக்குமதி செய்யப்பட்டன |
||
| (8 பயனர்களால் செய்யப்பட்ட 11 இடைப்பட்ட திருத்தங்கள் காட்டப்படவில்லை.) | |||
| வரிசை 1: | வரிசை 1: | ||
local mt = getmetatable(_G) or {} |
local mt = getmetatable(_G) or {} |
||
function mt.__index (t, k) |
function mt.__index (t, k) |
||
if |
if k ~= 'arg' then |
||
error('Tried to read nil global ' .. tostring(k), 2) |
error('Tried to read nil global ' .. tostring(k), 2) |
||
end |
end |
||
12:10, 17 திசம்பர் 2024 இல் கடைசித் திருத்தம்
| 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 ~= '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)