「モジュール:No globals」の版間の差分
ナビゲーションに移動
検索に移動
mw_>Rxy 細 (「モジュール:No globals」を保護しました: 影響が特に大きいテンプレート: 現時点で 353587 ページからの読み込み ([編集=管理者のみに許可] (無期限) [移動=管理者のみに許可] (無...) |
mw_>Minorax 細 (7 revisions imported from meta:Module:No_globals) |
||
2行目: | 2行目: | ||
function mt.__index (t, k) | function mt.__index (t, k) | ||
if k ~= 'arg' then | if k ~= 'arg' then | ||
− | error(' | + | -- perf optimization here and below: do not load Module:TNT unless there is an error |
+ | error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) | ||
end | end | ||
return nil | return nil | ||
8行目: | 9行目: | ||
function mt.__newindex(t, k, v) | function mt.__newindex(t, k, v) | ||
if k ~= 'arg' then | if k ~= 'arg' then | ||
− | error(' | + | error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) |
end | end | ||
rawset(t, k, v) | rawset(t, k, v) | ||
end | end | ||
setmetatable(_G, mt) | setmetatable(_G, mt) |
2020年3月1日 (日) 02:09時点における版
このモジュールについての説明文ページを モジュール:No globals/doc に作成できます
local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then -- perf optimization here and below: do not load Module:TNT unless there is an error error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) end rawset(t, k, v) end setmetatable(_G, mt)