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
|
local guide = require 'parser.guide'
local getClass = require 'core.hover.class'
local function asLocal(source)
return guide.getName(source)
end
local function asMethod(source, caller)
local class = getClass(source.node)
local node = class or guide.getName(source.node) or '?'
local method = guide.getName(source)
return ('%s:%s'):format(node, method)
end
local function asField(source, caller)
local class = getClass(source.node)
local node = class or guide.getName(source.node) or '?'
local method = guide.getName(source)
return ('%s.%s'):format(node, method)
end
local function asTableField(source)
return guide.getName(source.field)
end
local function asGlobal(source)
return guide.getName(source)
end
local function asLibrary(source, caller)
local p
if caller.type == 'method'
or caller.type == 'getmethod'
or caller.type == 'setmethod' then
if source.parent then
for _, parent in ipairs(source.parent) do
if parent.type == 'object' then
p = parent.name .. ':'
break
end
end
end
else
if source.parent then
for _, parent in ipairs(source.parent) do
if parent.type == 'global' then
p = parent.name .. '.'
break
end
end
end
end
if p then
return ('%s%s'):format(p, source.name)
else
return source.name
end
end
local function buildName(source, caller)
if source.library then
return asLibrary(source, caller) or ''
end
if source.type == 'local'
or source.type == 'getlocal'
or source.type == 'setlocal' then
return asLocal(source) or ''
end
if source.type == 'setglobal'
or source.type == 'getglobal' then
return asGlobal(source) or ''
end
if source.type == 'setmethod'
or source.type == 'getmethod' then
return asMethod(source, caller) or ''
end
if source.type == 'setfield'
or source.type == 'getfield' then
return asField(source, caller) or ''
end
if source.type == 'tablefield' then
return asTableField(source) or ''
end
local parent = source.parent
if parent then
return buildName(parent, caller)
end
return ''
end
return buildName
|