“模块:No globals”的版本间的差异

(导入1个版本:受托导入数个模板;本次导入Infobox,来源为ZhWP)
(导入2个版本)
 
(未显示同一用户的1个中间版本)

2022年7月11日 (一) 21:03的最新版本

50px 模块文档[创建]
local mt = getmetatable(_G) or {}
function mt.__index (t, k)
	if k ~= 'arg' then
		error('尝试读取空全局变量:' .. tostring(k), 2)
	end
	return nil
end
function mt.__newindex(t, k, v)
	if k ~= 'arg' then
		error('尝试写入全局变量:' .. tostring(k), 2)
	end
	rawset(t, k, v)
end
setmetatable(_G, mt)