summaryrefslogtreecommitdiff
path: root/server/src/core/references.lua
blob: 0f9c73ab119f7c6036a3f3e3c8660d3ace891ddd (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
local findSource = require 'core.find_source'

local function parseResult(vm, source, declarat, callback)
    if source:bindLabel() then
        source:bindLabel():eachInfo(function (info)
            if declarat or info.type == 'get' then
                callback(info.source)
            end
        end)
        return
    end
    if source:bindLocal() then
        local loc = source:bindLocal()
        loc:eachInfo(function (info)
            if declarat or info.type == 'get' then
                callback(info.source)
            end
        end)
        loc:getValue():eachInfo(function (info, src)
            if declarat or info.type == 'get' then
                callback(src)
            end
        end)
        return
    end
    if source:bindValue() then
        source:bindValue():eachInfo(function (info, src)
            if declarat or info.type == 'get' then
                callback(src)
            end
        end)
        local parent = source:get 'parent'
        parent:eachInfo(function (info, src)
            if info[1] == source[1] then
                if (declarat and info.type == 'set child') or info.type == 'get child' then
                    callback(src)
                end
            end
        end)
        return
    end
end

return function (vm, pos, declarat)
    local source = findSource(vm, pos)
    if not source then
        return nil
    end
    local positions = {}
    local mark = {}
    parseResult(vm, source, declarat, function (src)
        if mark[src] then
            return
        end
        mark[src] = true
        if src.start == 0 then
            return
        end
        local uri = src.uri
        if uri == '' then
            uri = nil
        end
        positions[#positions+1] = {
            src.start,
            src.finish,
            uri,
        }
    end)
    return positions
end