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
|
local files = require 'files'
local searcher = require 'searcher'
local lang = require 'language'
local library = require 'library'
local config = require 'config'
return function (uri, callback)
local ast = files.getAst(uri)
if not ast then
return
end
-- 遍历全局变量,检查所有没有 mode['set'] 的全局变量
searcher.eachGlobal(ast.ast, function (infos)
if infos.mode['set'] == true then
return
end
local key = infos.key
local skey = key and key:match '^s|(.+)$'
if not skey then
return
end
if library.global[skey] then
return
end
if config.config.diagnostics.globals[skey] then
return
end
local message
local otherVersion = library.other[skey]
local customVersion = library.custom[skey]
if otherVersion then
message = ('%s(%s)'):format(message, lang.script('DIAG_DEFINED_VERSION', table.concat(otherVersion, '/'), config.config.runtime.version))
elseif customVersion then
message = ('%s(%s)'):format(message, lang.script('DIAG_DEFINED_CUSTOM', table.concat(customVersion, '/')))
else
message = lang.script('DIAG_UNDEF_GLOBAL', skey)
end
for _, info in ipairs(infos) do
callback {
start = info.source.start,
finish = info.source.finish,
message = message,
}
end
end)
end
|