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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
local guide = require 'parser.guide'
local checkSMT = require 'searcher.setmetatable'
local m = {}
function m:eachDef(source, callback)
if source.tag ~= 'self' then
callback {
source = source,
uri = self.uri,
mode = 'local',
}
end
if source.ref then
for _, ref in ipairs(source.ref) do
if ref.type == 'setlocal' then
callback {
source = ref,
uri = self.uri,
mode = 'set',
}
end
end
end
if source.tag == 'self' then
local method = source.method
local node = method.node
self:eachDef(node, callback)
end
if source.value then
self:eachDef(source.value, callback)
end
end
function m:eachRef(source, callback)
if source.tag ~= 'self' then
callback {
source = source,
uri = self.uri,
mode = 'local',
}
end
if source.ref then
for _, ref in ipairs(source.ref) do
if ref.type == 'setlocal' then
callback {
source = ref,
uri = self.uri,
mode = 'set',
}
elseif ref.type == 'getlocal' then
callback {
source = ref,
uri = self.uri,
mode = 'get',
}
end
end
end
if source.tag == 'self' then
local method = source.method
local node = method.node
self:eachRef(node, callback)
end
end
function m:eachField(source, key, callback)
local used = {}
used[source] = true
local found = false
local refs = source.ref
if refs then
for i = 1, #refs do
local ref = refs[i]
if ref.type == 'getlocal' then
used[ref] = true
local parent = ref.parent
if key == guide.getKeyName(parent) then
if parent.type:sub(1, 3) == 'set' then
callback {
source = parent,
uri = self.uri,
mode = 'set',
}
found = true
else
callback {
source = parent,
uri = self.uri,
mode = 'get',
}
end
end
elseif ref.type == 'getglobal' then
used[ref] = true
if key == guide.getKeyName(ref) then
-- _ENV.XXX
callback {
source = ref,
uri = self.uri,
mode = 'get',
}
end
elseif ref.type == 'setglobal' then
used[ref] = true
-- _ENV.XXX = XXX
if key == guide.getKeyName(ref) then
callback {
source = ref,
uri = self.uri,
mode = 'set',
}
found = true
end
end
end
end
if source.tag == 'self' then
local method = source.method
local node = method.node
self:eachField(node, key, function (info)
callback(info)
if info.mode == 'set' then
found = true
end
end)
end
self:eachValue(source, function (info)
local src = info.source
if source ~= src then
info.searcher:eachField(src, key, function (info)
callback(info)
if info.mode == 'set' then
found = true
end
end)
end
end)
checkSMT(self, key, used, found, callback)
end
function m:eachValue(source, callback)
callback {
source = source,
uri = self.uri,
}
local refs = source.ref
if refs then
for i = 1, #refs do
local ref = refs[i]
if ref.type == 'setlocal' then
self:eachValue(ref.value, callback)
elseif ref.type == 'getlocal' then
local parent = ref.parent
if parent.type == 'setmethod' then
local func = parent.value
if func and func.locals then
callback {
source = func.locals[1],
uri = self.uri,
}
end
end
end
end
end
if source.value then
self:eachValue(source.value, callback)
end
end
function m:getValue(source)
if source.type == 'local'
or source.type == 'setlocal' then
return source.value or source
end
end
return m
|