Module:No globals:修订间差异

来自WikiEdge
跳转到导航 跳转到搜索
zh:wiki>Antigng
ep:修正错误翻译
 
导入1个版本
 
(没有差异)

2024年9月20日 (五) 14:55的最新版本

此模块的文档可以在Module:No globals/doc创建

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)