blob: 5114a54f4876e64a822811af18830ece38e921f3 (
plain)
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
|
local files = require 'files'
local searcher = require 'core.searcher'
local lang = require 'language'
local vm = require 'vm'
local guide = require 'parser.guide'
return function (uri, callback)
local state = files.getState(uri)
if not state then
return
end
if not state.ast.docs then
return
end
local cache = {}
for _, doc in ipairs(state.ast.docs) do
if doc.type == 'doc.alias' then
local name = guide.getKeyName(doc)
if not cache[name] then
local docs = vm.getDocDefines(uri, name)
cache[name] = {}
for _, otherDoc in ipairs(docs) do
if otherDoc.type == 'doc.class.name'
or otherDoc.type == 'doc.alias.name' then
cache[name][#cache[name]+1] = {
start = otherDoc.start,
finish = otherDoc.finish,
uri = guide.getUri(otherDoc),
}
end
end
end
if #cache[name] > 1 then
callback {
start = doc.start,
finish = doc.finish,
related = cache,
message = lang.script('DIAG_DUPLICATE_DOC_CLASS', name)
}
end
end
end
end
|