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
|
local findResult = require 'matcher.find_result'
local function tryMeta(var)
local keys = {}
repeat
if var.childs.meta then
local metavar = var.childs.meta
for i = #keys, 1, -1 do
local key = keys[i]
metavar = metavar.childs[key]
if not metavar then
return nil
end
end
return metavar
end
keys[#keys+1] = var.key
var = var.parent
until not var
return nil
end
local function parseResult(result, declarat)
local positions = {}
local tp = result.type
if tp == 'var' then
local var = result.var
for _, info in ipairs(var) do
if declarat or info.type == 'get' then
positions[#positions+1] = {info.source.start, info.source.finish}
end
end
local metavar = tryMeta(var)
if metavar then
for _, info in ipairs(metavar) do
if declarat or info.type == 'get' then
positions[#positions+1] = {info.source.start, info.source.finish}
end
end
end
elseif tp == 'dots' then
local dots = result.dots
for _, info in ipairs(dots) do
if declarat or info.type == 'get' then
positions[#positions+1] = {info.source.start, info.source.finish}
end
end
elseif tp == 'label' then
local label = result.label
for _, info in ipairs(label) do
if declarat or info.type == 'goto' then
positions[#positions+1] = {info.source.start, info.source.finish}
end
end
else
error('Unknow result type:' .. result.type)
end
return positions
end
return function (results, pos, declarat)
local result = findResult(results, pos)
if not result then
return nil
end
local positions = parseResult(result, declarat)
return positions
end
|