blob: a60c8cdbcf55b2ca2597fba2377ab17f3d8ec657 (
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
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
|
local files = require 'files'
local guide = require 'parser.guide'
local searcher = require 'searcher'
local lang = require 'language'
local define = require 'proto.define'
local await = require 'await'
local function countLibraryArgs(source)
local func = searcher.getLibrary(source)
if not func then
return nil
end
local result = 0
if not func.args then
return result
end
if func.args[#func.args].type == '...' then
return math.maxinteger
end
result = result + #func.args
return result
end
local function countCallArgs(source)
local result = 0
if not source.args then
return 0
end
if source.node and source.node.type == 'getmethod' then
result = result + 1
end
result = result + #source.args
return result
end
local function countFuncArgs(source)
local result = 0
if not source.args then
return result
end
if source.args[#source.args].type == '...' then
return math.maxinteger
end
if source.parent and source.parent.type == 'setmethod' then
result = result + 1
end
result = result + #source.args
return result
end
return function (uri, callback)
local ast = files.getAst(uri)
if not ast then
return
end
guide.eachSourceType(ast.ast, 'call', function (source)
local callArgs = countCallArgs(source)
if callArgs == 0 then
return
end
await.delay(function ()
return files.globalVersion
end)
local func = source.node
local funcArgs
searcher.eachDef(func, function (info)
if info.mode == 'value' then
local src = info.source
if src.type == 'function' then
local args = countFuncArgs(src)
if not funcArgs or args > funcArgs then
funcArgs = args
end
end
end
end)
funcArgs = funcArgs or countLibraryArgs(func)
if not funcArgs then
return
end
local delta = callArgs - funcArgs
if delta <= 0 then
return
end
for i = #source.args - delta + 1, #source.args do
local arg = source.args[i]
if arg then
callback {
start = arg.start,
finish = arg.finish,
tags = { define.DiagnosticTag.Unnecessary },
message = lang.script('DIAG_OVER_MAX_ARGS', funcArgs, callArgs)
}
end
end
end)
end
|