summaryrefslogtreecommitdiff
path: root/builtin/common
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-11-23 16:30:14 -0500
committerShadowNinja <shadowninja@minetest.net>2014-11-23 16:34:49 -0500
commita1db83e93f21c99b8799a7338df16ca65453a424 (patch)
tree2b1ed42d3c1753fb9bb6dbcf923858a1c9d3fb7b /builtin/common
parent0dcc4b251f4de4631d2211e1be3f65b8da15439d (diff)
downloadminetest-a1db83e93f21c99b8799a7338df16ca65453a424.tar.gz
minetest-a1db83e93f21c99b8799a7338df16ca65453a424.tar.bz2
minetest-a1db83e93f21c99b8799a7338df16ca65453a424.zip
Make duplicate warning checks file and line specific
Diffstat (limited to 'builtin/common')
-rw-r--r--builtin/common/strict.lua18
1 files changed, 12 insertions, 6 deletions
diff --git a/builtin/common/strict.lua b/builtin/common/strict.lua
index b6f4d6d2c..91d1f5b19 100644
--- a/builtin/common/strict.lua
+++ b/builtin/common/strict.lua
@@ -11,16 +11,21 @@ end
local meta = {}
local declared = {}
-local alreadywarned = {}
+-- Key is source file, line, and variable name; seperated by NULs
+local warned = {}
function meta:__newindex(name, value)
local info = debug.getinfo(2, "Sl")
local desc = ("%s:%d"):format(info.short_src, info.currentline)
if not declared[name] then
- if info.what ~= "main" and info.what ~= "C" then
- warn(("Assignment to undeclared global %q inside"
- .." a function at %s.")
+ local warn_key = ("%s\0%d\0%s"):format(info.source,
+ info.currentline, name)
+ if not warned[warn_key] and info.what ~= "main" and
+ info.what ~= "C" then
+ minetest.log("error", ("Assignment to undeclared "..
+ "global %q inside a function at %s.")
:format(name, desc))
+ warned[warn_key] = true
end
declared[name] = true
end
@@ -36,10 +41,11 @@ end
function meta:__index(name)
local info = debug.getinfo(2, "Sl")
- if not declared[name] and info.what ~= "C" and not alreadywarned[name] then
+ local warn_key = ("%s\0%d\0%s"):format(info.source, info.currentline, name)
+ if not declared[name] and not warned[warn_key] and info.what ~= "C" then
warn(("Undeclared global variable %q accessed at %s:%s")
:format(name, info.short_src, info.currentline))
- alreadywarned[name] = true
+ warned[warn_key] = true
end
return rawget(self, name)
end