模块:No globals
来自中文乐谱库
Lua错误:无法创建进程:proc_open(/dev/null): failed to open stream: Operation not permitted
本模块将读取空全域变量和写入全局变量视为错误。要使用本模块,在模块上方添加require('Module:No globals')
脚本错误:Lua错误:无法创建进程:proc_open(/dev/null): failed to open stream: Operation not permitted
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)