blob: b621fd9eab81215f1995dafac6b03979c8b1307e (
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
|
local files = require 'files'
local lang = require 'language'
return function (uri, callback)
local state = files.getAst(uri)
if not state then
return
end
if not state.ast.docs then
return
end
local mark
for _, group in ipairs(state.ast.docs.groups) do
for _, doc in ipairs(group) do
if doc.type == 'doc.class' then
mark = {}
elseif doc.type == 'doc.field' then
if mark then
local name = doc.field[1]
if mark[name] then
callback {
start = doc.field.start,
finish = doc.field.finish,
message = lang.script('DIAG_DUPLICATE_DOC_FIELD', name),
}
end
mark[name] = true
end
end
end
end
end
|