forked from lua-stdlib/lua-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrict.lua
More file actions
62 lines (48 loc) · 1.5 KB
/
strict.lua
File metadata and controls
62 lines (48 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--[[--
Checks uses of undeclared global variables.
All global variables must be 'declared' through a regular
assignment (even assigning `nil` will do) in a top-level
chunk before being used anywhere or assigned to inside a function.
To use this module, just require it near the start of your program.
From Lua distribution (`etc/strict.lua`).
@module std.strict
]]
local getinfo, error, rawset, rawget = debug.getinfo, error, rawset, rawget
local mt = getmetatable (_G)
if mt == nil then
mt = {}
setmetatable (_G, mt)
end
-- The set of globally declared variables.
mt.__declared = {}
--- What kind of variable declaration is this?
-- @treturn string "C", "Lua" or "main"
local function what ()
local d = getinfo (3, "S")
return d and d.what or "C"
end
--- Detect assignment to undeclared global.
-- @function __newindex
-- @tparam table t `_G`
-- @string n name of the variable being declared
-- @param v initial value of the variable
mt.__newindex = function (t, n, v)
if not mt.__declared[n] then
local w = what ()
if w ~= "main" and w ~= "C" then
error ("assignment to undeclared variable '" .. n .. "'", 2)
end
mt.__declared[n] = true
end
rawset (t, n, v)
end
--- Detect dereference of undeclared global.
-- @function __index
-- @tparam table t `_G`
-- @string n name of the variable being dereferenced
mt.__index = function (t, n)
if not mt.__declared[n] and what () ~= "C" then
error ("variable '" .. n .. "' is not declared", 2)
end
return rawget (t, n)
end