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
63
|
local files = require 'files'
local vm = require 'vm'
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
local globalCache = {}
-- 遍历全局变量,检查所有没有 mode['set'] 的全局变量
local globals = vm.getGlobals(ast.ast)
for key, infos in pairs(globals) do
if infos.mode['set'] == true then
goto CONTINUE
end
if globalCache[key] then
goto CONTINUE
end
local skey = key and key:match '^s|(.+)$'
if not skey then
goto CONTINUE
end
if library.global[skey] then
goto CONTINUE
end
if config.config.diagnostics.globals[skey] then
goto CONTINUE
end
if globalCache[key] == nil then
local uris = files.findGlobals(key)
for i = 1, #uris do
local destAst = files.getAst(uris[i])
local destGlobals = vm.getGlobals(destAst.ast)
if destGlobals[key] and destGlobals[key].mode['set'] then
globalCache[key] = true
goto CONTINUE
end
end
end
globalCache[key] = false
local message = lang.script('DIAG_UNDEF_GLOBAL', skey)
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, '/')))
end
for _, info in ipairs(infos) do
callback {
start = info.source.start,
finish = info.source.finish,
message = message,
}
end
::CONTINUE::
end
end
|