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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
local guide = require 'parser.guide'
local vm = require 'vm'
local buildName
local function asLocal(source)
local name = guide.getName(source)
if not source.attrs then
return name
end
local label = {}
label[#label+1] = name
for _, attr in ipairs(source.attrs) do
label[#label+1] = ('<%s>'):format(attr[1])
end
return table.concat(label, ' ')
end
local function asField(source, oop)
local class
if source.node.type ~= 'getglobal' then
class = vm.getClass(source.node, 'deep')
end
local node = class or guide.getName(source.node) or '?'
local method = guide.getName(source)
if oop then
return ('%s:%s'):format(node, method)
else
return ('%s.%s'):format(node, method)
end
end
local function asTableField(source)
if not source.field then
return
end
return guide.getName(source.field)
end
local function asGlobal(source)
return guide.getName(source)
end
local function asLibrary(source, oop)
local p
if oop 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 asDocFunction(source)
local doc = guide.getParentType(source, 'doc.type')
or guide.getParentType(source, 'doc.overload')
if not doc or not doc.bindSources then
return ''
end
for _, src in ipairs(doc.bindSources) do
local name = buildName(src)
if name ~= '' then
return name
end
end
return ''
end
function buildName(source, oop)
if oop == nil then
oop = source.type == 'setmethod'
or source.type == 'getmethod'
end
if source.type == 'library' then
return asLibrary(source.value, oop) or ''
elseif source.library then
return asLibrary(source, oop) 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 asField(source, true) or ''
end
if source.type == 'setfield'
or source.type == 'getfield' then
return asField(source, oop) or ''
end
if source.type == 'tablefield' then
return asTableField(source) or ''
end
if source.type == 'doc.type.function' then
return asDocFunction(source)
end
local parent = source.parent
if parent then
return buildName(parent, oop)
end
return ''
end
return buildName
|