nothing interesting
[monky] / lua_scripts / strict.lua
1 --
2 -- strict.lua
3 -- checks uses of undeclared global variables
4 -- All global variables must be 'declared' through a regular assignment
5 -- (even assigning nil will do) in a main chunk before being used
6 -- anywhere or assigned to inside a function.
7 --
8 -- From Lua distribution (etc/strict.lua)
9 --
10
11 local getinfo, error, rawset, rawget = debug.getinfo, error, rawset, rawget
12
13 local mt = getmetatable(_G)
14 if mt == nil then
15   mt = {}
16   setmetatable(_G, mt)
17 end
18
19 mt.__declared = {}
20
21 local function what ()
22   local d = getinfo(3, "S")
23   return d and d.what or "C"
24 end
25
26 mt.__newindex = function (t, n, v)
27   if not mt.__declared[n] then
28     local w = what()
29     if w ~= "main" and w ~= "C" then
30       print("assign to undeclared variable '"..n.."'")
31     end
32     mt.__declared[n] = true
33   end
34   rawset(t, n, v)
35 end
36
37 mt.__index = function (t, n)
38   if not mt.__declared[n] and what() ~= "C" then
39     print("variable '"..n.."' is not declared")
40   end
41   return rawget(t, n)
42 end