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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
|
local searcher = require 'core.searcher'
local config = require 'config'
local linker = require 'core.linker'
local BE_LEN = {'#'}
local CLASS = {'CLASS'}
local m = {}
local function mergeTable(a, b)
if not b then
return
end
for v in pairs(b) do
a[v] = true
end
end
local function searchInferOfUnary(value, infers)
local op = value.op.type
if op == 'not' then
infers['boolean'] = true
return
end
if op == '#' then
infers['integer'] = true
return
end
if op == '-' then
if m.hasType(value[1], 'integer') then
infers['integer'] = true
else
infers['number'] = true
end
return
end
if op == '~' then
infers['integer'] = true
return
end
end
local function searchInferOfBinary(value, infers)
local op = value.op.type
if op == 'and' then
if m.isTrue(value[1]) then
mergeTable(infers, m.searchInfers(value[2]))
else
mergeTable(infers, m.searchInfers(value[1]))
end
return
end
if op == 'or' then
if m.isTrue(value[1]) then
mergeTable(infers, m.searchInfers(value[1]))
else
mergeTable(infers, m.searchInfers(value[2]))
end
return
end
if op == '=='
or op == '~='
or op == '<'
or op == '>'
or op == '<='
or op == '>=' then
infers['boolean'] = true
return
end
if op == '<<'
or op == '>>'
or op == '~'
or op == '&'
or op == '|' then
infers['integer'] = true
return
end
if op == '..' then
infers['string'] = true
return
end
if op == '^'
or op == '/' then
infers['number'] = true
return
end
if op == '+'
or op == '-'
or op == '*'
or op == '%'
or op == '//' then
if m.hasType(value[1], 'integer')
and m.hasType(value[2], 'integer') then
infers['integer'] = true
else
infers['number'] = true
end
return
end
end
local function searchInferOfValue(value, infers)
if value.type == 'string' then
infers['string'] = true
return true
end
if value.type == 'boolean' then
infers['boolean'] = true
return true
end
if value.type == 'table' then
infers['table'] = true
return true
end
if value.type == 'number' then
if math.type(value[1]) == 'integer' then
infers['integer'] = true
else
infers['number'] = true
end
return true
end
if value.type == 'nil' then
infers['nil'] = true
return true
end
if value.type == 'function' then
infers['function'] = true
return true
end
if value.type == 'unary' then
searchInferOfUnary(value, infers)
return true
end
if value.type == 'binary' then
searchInferOfBinary(value, infers)
return true
end
return false
end
local function searchLiteralOfValue(value, literals)
if value.type == 'string'
or value.type == 'boolean'
or value.tyoe == 'number'
or value.type == 'integer' then
local v = value[1]
if v ~= nil then
literals[v] = true
end
return
end
if value.type == 'unary' then
local op = value.op.type
if op == '-' then
end
if op == '~' then
end
end
return
end
local function bindClassOrType(source)
if not source.bindDocs then
return false
end
for _, doc in ipairs(source.bindDocs) do
if doc.type == 'doc.class'
or doc.type == 'doc.type' then
return true
end
end
return false
end
local function cleanInfers(infers)
local version = config.config.runtime.version
local enableInteger = version == 'Lua 5.3' or version == 'Lua 5.4'
if infers['number'] then
enableInteger = false
end
if not enableInteger and infers['integer'] then
infers['integer'] = nil
infers['number'] = true
end
if infers[BE_LEN] then
infers[BE_LEN] = nil
if not infers['table'] and not infers['string'] then
infers['table'] = true
infers['string'] = true
end
end
if infers[CLASS] then
infers[CLASS] = nil
infers['table'] = nil
end
end
---合并对象的推断类型
---@param infers string[]
---@return string
function m.viewInfers(infers)
if infers[0] then
return infers[0]
end
-- 如果有显性的 any ,则直接显示为 any
if infers['any'] then
infers[0] = 'any'
return 'any'
end
local result = {}
local count = 0
for infer in pairs(infers) do
count = count + 1
result[count] = infer
end
-- 如果没有任何显性类型,则推测为 unkonwn ,显示为 any
if count == 0 then
infers[0] = 'any'
return 'any'
end
table.sort(infers)
infers[0] = table.concat(result, '|')
return infers[0]
end
---显示对象的推断类型
---@param source parser.guide.object
---@return string
local function searchInfer(source, infers)
if bindClassOrType(source) then
return
end
if searchInferOfValue(source, infers) then
return
end
local value = searcher.getObjectValue(source)
if value then
searchInferOfValue(value, infers)
return
end
if source.type == 'doc.class.name' then
local name = source[1]
if name then
infers[name] = true
infers[CLASS] = true
end
return
end
-- X.a -> table
if source.next and source.next.node == source then
if source.next.type == 'setfield'
or source.next.type == 'setindex'
or source.next.type == 'setmethod' then
infers['table'] = true
end
return
end
-- return XX
if source.parent.type == 'return' then
infers['any'] = true
return
end
if source.parent.type == 'unary' then
local op = source.parent.op.type
-- # XX -> string | table
if op == '#' then
infers[BE_LEN] = true
return
end
if op == '-' then
infers['number'] = true
return
end
if op == '~' then
infers['integer'] = true
return
end
return
end
if source.parent.type == 'binary' then
local op = source.parent.op.type
if op == '+'
or op == '-'
or op == '*'
or op == '/'
or op == '//'
or op == '^'
or op == '%' then
infers['number'] = true
return
end
if op == '<<'
or op == '>>'
or op == '~'
or op == '|'
or op == '&' then
infers['integer'] = true
return
end
return
end
end
local function searchLiteral(source, literals)
local value = searcher.getObjectValue(source)
if value then
searchLiteralOfValue(value, literals)
return
end
end
---搜索对象的推断类型
---@param source parser.guide.object
---@return string[]
function m.searchInfers(source)
if not source then
return nil
end
local defs = searcher.requestDefinition(source)
local infers = {}
searchInfer(source, infers)
for _, def in ipairs(defs) do
searchInfer(def, infers)
end
local id = linker.getID(source)
if id then
local link = linker.getLinkByID(source, id)
if link and link.sources then
for _, src in ipairs(link.sources) do
searchInfer(src, infers)
end
end
end
cleanInfers(infers)
return infers
end
---搜索对象的字面量值
---@param source parser.guide.object
---@return table
function m.searchLiterals(source)
local defs = searcher.requestDefinition(source)
local literals = {}
searchLiteral(source, literals)
for _, def in ipairs(defs) do
searchLiteral(def, literals)
end
return literals
end
---判断对象的推断值是否是 true
---@param source parser.guide.object
function m.isTrue(source)
if not source then
return false
end
local literals = m.searchLiterals(source)
for literal in pairs(literals) do
if literal ~= false then
return true
end
end
return false
end
---判断对象的推断类型是否包含某个类型
function m.hasType(source, tp)
local infers = m.searchInfers(source)
return infers[tp]
end
---搜索并显示推断类型
---@param source parser.guide.object
---@return string
function m.searchAndViewInfers(source)
if not source then
return 'any'
end
local infers = m.searchInfers(source)
local view = m.viewInfers(infers)
return view
end
return m
|