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
|
local function isContainPos(obj, pos)
if obj.start <= pos and obj.finish + 1 >= pos then
return true
end
return false
end
local function isValidSource(source)
return source.type ~= 'simple'
end
local function findAtPos(results, pos, level)
local res = {}
for _, source in ipairs(results.sources) do
if isValidSource(source) and isContainPos(source, pos) then
res[#res+1] = {
object = source.bind,
source = source,
range = source.finish - source.start,
}
if not source.bind then
error('Miss source object')
end
end
end
if #res == 0 then
return nil
end
table.sort(res, function (a, b)
return a.range < b.range
end)
local data = res[level or 1]
if not data then
return nil
end
return data.object, data.source
end
return function (vm, pos, level)
return findAtPos(vm.results, pos, level)
end
|