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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
local files = require 'files'
local vm = require 'vm'
local lang = require 'language'
local guide = require 'parser.guide'
local config = require 'config'
local define = require 'proto.define'
local await = require 'await'
local util = require 'utility'
local types = {'getglobal', 'getfield', 'getindex', 'getmethod'}
---@async
return function (uri, callback)
local ast = files.getState(uri)
if not ast then
return
end
local dglobals = util.arrayToHash(config.get(uri, 'Lua.diagnostics.globals'))
local rspecial = config.get(uri, 'Lua.runtime.special')
guide.eachSourceTypes(ast.ast, types, function (src) ---@async
if src.type == 'getglobal' then
local key = src[1]
if not key then
return
end
if dglobals[key] then
return
end
if rspecial[key] then
return
end
end
await.delay()
local deprecated = vm.getDeprecated(src, true)
if not deprecated then
return
end
await.delay()
local message = lang.script.DIAG_DEPRECATED
local versions
if deprecated.type == 'doc.version' then
local validVersions = vm.getValidVersions(deprecated)
versions = {}
for version, valid in pairs(validVersions) do
if valid then
versions[#versions+1] = version
end
end
table.sort(versions)
if #versions > 0 then
message = ('%s(%s)'):format(message
, lang.script('DIAG_DEFINED_VERSION'
, table.concat(versions, '/')
, config.get(uri, 'Lua.runtime.version'))
)
end
end
if deprecated.type == 'doc.deprecated' then
if deprecated.comment then
message = ('%s(%s)'):format(message, util.trim(deprecated.comment.text))
end
end
callback {
start = src.start,
finish = src.finish,
tags = { define.DiagnosticTag.Deprecated },
message = message,
data = {
versions = versions,
}
}
end)
end
|