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
|
local files = require 'files'
local guide = require 'parser.guide'
local lang = require 'language'
return function (uri, callback)
local ast = files.getState(uri)
local lines = files.getLines(uri)
local text = files.getText(uri)
if not ast or not lines then
return
end
guide.eachSourceType(ast.ast, 'call', function (source)
local node = source.node
local args = source.args
if not args then
return
end
-- 必须有其他人在继续使用当前对象
if not source.next then
return
end
if text:sub(args.start, args.start) ~= '('
or text:sub(args.finish, args.finish) ~= ')' then
return
end
local nodeRow = guide.positionOf(lines, node.finish)
local argRow = guide.positionOf(lines, args.start)
if nodeRow == argRow then
return
end
if #args == 1 then
callback {
start = node.start,
finish = args.finish,
message = lang.script('DIAG_PREVIOUS_CALL', text:sub(node.start, node.finish), text:sub(args.start, args.finish)),
}
end
end)
end
|