「模組:No globals」:修訂間的差異

出自新詞查詢
前往: 導覽、​ 搜尋
template>MusikAnimal
(Undid revision 948472525 by [[Special:Contributions/w>DiBabelYurikBot|w>DiBabelYurikBot]] ([[User talk:w>DiBabelYurikBot|talk]]))
 
(已匯入 1 筆修訂)
 
(無差異)

於 2023年1月6日 (五) 09:42 的最新修訂

模板: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。