模組: No globals

出自新詞查詢
於 2023年1月6日 (五) 09:42 由 Ay2014留言 | 貢獻 所做的修訂 (已匯入 1 筆修訂)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽、​ 搜尋
模板:high use

模板:module rating 模板:deprecated

The functionality this module provides was added to Scribunto itself (see T209310) and should now be used as 模板:ml-lua.

See also


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)
Cookies 幫助我們給予服務內容。依您有使用我們的服務,代表您同意我們使用 cookies。