blob: 765b01c25dfa77839e394a890893d53a69cadfc1 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
local buildName = require 'core.hover.name'
local buildArg = require 'core.hover.arg'
local buildReturn = require 'core.hover.return'
local buildTable = require 'core.hover.table'
local getClass = require 'core.hover.class'
local vm = require 'vm'
local util = require 'utility'
local function asFunction(source)
local name = buildName(source)
local arg = buildArg(source)
local rtn = buildReturn(source)
local lines = {}
lines[1] = ('function %s(%s)'):format(name, arg)
lines[2] = rtn
return table.concat(lines, '\n')
end
local function asValue(source, title)
local name = buildName(source)
local class = getClass(source)
local type = vm.getType(source)
local literal = vm.getLiteral(source)
local cont
if type == 'table' then
cont = buildTable(source)
type = nil
end
local pack = {}
pack[#pack+1] = title
pack[#pack+1] = name .. ':'
pack[#pack+1] = class or type
if literal then
pack[#pack+1] = '='
pack[#pack+1] = util.viewLiteral(literal)
end
if cont then
pack[#pack+1] = cont
end
return table.concat(pack, ' ')
end
local function asLocal(source)
return asValue(source, 'local')
end
local function asGlobal(source)
return asValue(source, 'global')
end
local function isGlobalField(source)
if source.type == 'field'
or source.type == 'method' then
source = source.parent
end
if source.type == 'setfield'
or source.type == 'getfield'
or source.type == 'setmethod'
or source.type == 'getmethod' then
local node = source.node
if node.type == 'setglobal'
or node.type == 'getglobal' then
return true
end
return isGlobalField(node)
elseif source.type == 'tablefield' then
local parent = source.parent
if parent.type == 'setglobal'
or parent.type == 'getglobal' then
return true
end
return isGlobalField(parent)
else
return false
end
end
local function asField(source)
if isGlobalField(source) then
return asGlobal(source)
end
return asValue(source, 'field')
end
return function (source)
if source.type == 'function' then
return asFunction(source)
elseif source.type == 'local'
or source.type == 'getlocal'
or source.type == 'setlocal' then
return asLocal(source)
elseif source.type == 'setglobal'
or source.type == 'getglobal' then
return asGlobal(source)
elseif source.type == 'getfield'
or source.type == 'setfield'
or source.type == 'getmethod'
or source.type == 'setmethod'
or source.type == 'tablefield'
or source.type == 'field'
or source.type == 'method' then
return asField(source)
end
end
|