blob: 78112bebd073046a35af5903530ab750a0fdbb0d (
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
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
|
local files = require 'files'
local lang = require 'language'
local vm = require 'vm.vm'
local function getFieldEventName(doc)
if not doc.extends then
return nil
end
if #doc.extends.types ~= 1 then
return nil
end
local docFunc = doc.extends.types[1]
if docFunc.type ~= 'doc.type.function' then
return nil
end
for i = 1, 2 do
local arg = docFunc.args[i]
if arg
and arg.extends
and #arg.extends.types == 1 then
local literal = arg.extends.types[1]
if literal.type == 'doc.type.boolean'
or literal.type == 'doc.type.string'
or literal.type == 'doc.type.integer' then
return ('%q'):format(literal[1])
end
end
end
return nil
end
return function (uri, callback)
local state = files.getState(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
if doc.field.type == 'doc.type' then
name = ('[%s]'):format(vm.getInfer(doc.field):view(uri))
else
name = ('%q'):format(doc.field[1])
end
local eventName = getFieldEventName(doc)
if eventName then
name = name .. '|' .. eventName
end
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
|