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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
-- incomplete-signature-doc
local files = require 'files'
local lang = require 'language'
local guide = require "parser.guide"
local await = require 'await'
local function findParam(docs, param)
if not docs then
return false
end
for _, doc in ipairs(docs) do
if doc.type == 'doc.param' then
if doc.param[1] == param then
return true
end
end
end
return false
end
local function findReturn(docs, index)
if not docs then
return false
end
for _, doc in ipairs(docs) do
if doc.type == 'doc.return' then
for _, ret in ipairs(doc.returns) do
if ret.returnIndex == index then
return true
end
end
end
end
return false
end
--- check if there's any signature doc (@param or @return), or just comments, @async, ...
local function findSignatureDoc(docs)
if not docs then
return false
end
for _, doc in ipairs(docs) do
if doc.type == 'doc.return' or doc.type == 'doc.param' then
return true
end
end
return false
end
---@async
return function (uri, callback)
local state = files.getState(uri)
if not state then
return
end
if not state.ast then
return
end
---@async
guide.eachSourceType(state.ast, 'function', function (source)
await.delay()
if not source.bindDocs then
return
end
--- don't apply rule if there is no @param or @return annotation yet
--- so comments and @async can be applied without the need for a full documentation
if(not findSignatureDoc(source.bindDocs)) then
return
end
if source.args and #source.args > 0 then
for _, arg in ipairs(source.args) do
local argName = arg[1]
if argName ~= 'self'
and argName ~= '_' then
if not findParam(source.bindDocs, argName) then
callback {
start = arg.start,
finish = arg.finish,
message = lang.script('DIAG_INCOMPLETE_SIGNATURE_DOC_PARAM', argName),
}
end
end
end
end
if source.returns then
for _, ret in ipairs(source.returns) do
for index, expr in ipairs(ret) do
if not findReturn(source.bindDocs, index) then
callback {
start = expr.start,
finish = expr.finish,
message = lang.script('DIAG_INCOMPLETE_SIGNATURE_DOC_RETURN', index),
}
end
end
end
end
end)
end
|