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
|
local files = require 'files'
local guide = require 'parser.guide'
local vm = require 'vm'
local lang = require 'language'
local function countCallArgs(source)
local result = 0
if not source.args then
return 0
end
result = result + #source.args
return result
end
---@return integer
local function countFuncArgs(source)
if not source.args or #source.args == 0 then
return 0
end
local count = 0
for i = #source.args, 1, -1 do
local arg = source.args[i]
if arg.type ~= '...'
and not vm.compileNode(arg):isNullable() then
return i
end
end
return count
end
local function getFuncArgs(func)
local funcArgs
local defs = vm.getDefs(func)
for _, def in ipairs(defs) do
if def.type == 'function'
or def.type == 'doc.type.function' then
local args = countFuncArgs(def)
if not funcArgs or args < funcArgs then
funcArgs = args
end
end
end
return funcArgs
end
return function (uri, callback)
local state = files.getState(uri)
if not state then
return
end
guide.eachSourceType(state.ast, 'call', function (source)
local callArgs = countCallArgs(source)
if callArgs == 0 then
return
end
local func = source.node
local funcArgs = getFuncArgs(func)
if not funcArgs then
return
end
local delta = callArgs - funcArgs
if delta >= 0 then
return
end
callback {
start = source.start,
finish = source.finish,
}
for i = #source.args - delta + 1, #source.args do
local arg = source.args[i]
if arg then
callback {
start = arg.start,
finish = arg.finish,
message = lang.script('DIAG_MISS_ARGS', funcArgs, callArgs)
}
end
end
end)
end
|