summaryrefslogtreecommitdiff
path: root/server/src/method/textDocument/signatureHelp.lua
blob: fa8c91f67fb91611ec3a9eecdd9abc58a7826ee6 (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
local core = require 'core'

return function (lsp, params)
    local uri = params.textDocument.uri
    local vm, lines = lsp:loadVM(uri)
    if not vm then
        return
    end
    local position = lines:position(params.position.line + 1, params.position.character + 1)
    local hovers = core.signature(vm, position)
    if not hovers then
        return
    end

    local description = hovers[1].description
    table.sort(hovers, function (a, b)
        return a.label < b.label
    end)

    local active
    local signatures = {}
    for i, hover in ipairs(hovers) do
        local signature = {
            label = hover.label,
            documentation = {
                kind = 'markdown',
                value = hover.description,
            },
        }
        if hover.argLabel then
            if not active then
                active = i
            end
            signature.parameters = {
                {
                    label = {
                        hover.argLabel[1] - 1,
                        hover.argLabel[2],
                    }
                }
            }
        end
        signatures[i] = signature
    end

    local response = {
        signatures = signatures,
        activeSignature = active and active - 1 or 0,
    }

    return response
end