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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
|
local guide = require 'parser.guide'
local util = require 'utility'
local localID = require 'vm.local-id'
local globalMgr = require 'vm.global-manager'
local nodeMgr = require 'vm.node'
local genericMgr = require 'vm.generic-manager'
local valueMgr = require 'vm.value'
---@class parser.object
---@field _compiledNodes boolean
---@field _node vm.node
---@class vm.node.compiler
local m = {}
local searchFieldMap = util.switch()
: case 'table'
: call(function (node, key, pushResult)
for _, field in ipairs(node) do
if field.type == 'tablefield'
or field.type == 'tableindex' then
if guide.getKeyName(field) == key then
pushResult(field)
end
end
end
end)
: case 'global'
---@param node vm.node.global
: call(function (node, key, pushResult)
if node.cate == 'variable' then
local global = globalMgr.getGlobal('variable', node.name, key)
if global then
pushResult(global)
end
end
if node.cate == 'type' then
m.getClassFields(node, key, pushResult)
end
end)
: case 'local'
: call(function (node, key, pushResult)
local sources = localID.getSources(node, key)
if sources then
for _, src in ipairs(sources) do
pushResult(src)
end
end
end)
: case 'doc.type.array'
: call(function (node, key, pushResult)
if type(key) == 'number'
and math.tointeger(key)
and key >= 1 then
pushResult(node.node)
end
end)
: case 'doc.type.table'
: call(function (node, key, pushResult)
for _, field in ipairs(node.fields) do
local fieldKey = field.name
if fieldKey.type == 'doc.type' then
local fieldNode = m.compileNode(fieldKey)
for fn in nodeMgr.eachNode(fieldNode) do
if fn.type == 'global' and fn.cate == 'type' then
if fn.name == 'any'
or (fn.name == 'boolean' and type(key) == 'boolean')
or (fn.name == 'number' and type(key) == 'number')
or (fn.name == 'integer' and math.tointeger(key))
or (fn.name == 'string' and type(key) == 'string') then
pushResult(field.extends)
end
end
end
end
if fieldKey.type == 'doc.field.name' then
if fieldKey[1] == key then
pushResult(field.extends)
end
end
end
end)
: getMap()
function m.getClassFields(node, key, pushResult)
local mark = {}
local function searchClass(class)
local name = class.name
if mark[name] then
return
end
mark[name] = true
for _, set in ipairs(class:getSets()) do
if set.type == 'doc.class' then
-- check ---@field
local hasFounded
for _, field in ipairs(set.fields) do
if guide.getKeyName(field) == key then
hasFounded = true
pushResult(field)
end
end
-- check local field and global field
if set.bindSources then
for _, src in ipairs(set.bindSources) do
if searchFieldMap[src.type] then
searchFieldMap[src.type](src, key, function (field)
hasFounded = true
pushResult(field)
end)
end
if src._globalNode then
searchFieldMap['global'](src._globalNode, key, function (field)
hasFounded = true
pushResult(field)
end)
end
end
end
-- look into extends(if field not found)
if not hasFounded and set.extends then
for _, extend in ipairs(set.extends) do
if extend.type == 'doc.extends.name' then
local extendType = globalMgr.getGlobal('type', extend[1])
if extendType then
searchClass(extendType)
end
end
end
end
end
end
end
searchClass(node)
end
---@class parser.object
---@field _generic? vm.node.generic-manager
---@param source parser.object
---@return vm.node.generic-manager?
local function getObjectGeneric(source)
if source._generic ~= nil then
return source._generic
end
source._generic = false
if source.type == 'function' then
for _, doc in ipairs(source.bindDocs) do
if doc.type == 'doc.generic' then
if not source._generic then
source._generic = genericMgr(source)
break
end
end
end
if not source._generic then
return false
end
for _, doc in ipairs(source.bindDocs) do
if doc.type == 'doc.param' then
source._generic:addSign(doc.extends)
end
end
end
if source.type == 'doc.type.function'
or source.type == 'doc.type.table' then
local hasGeneric
guide.eachSourceType(source, 'doc.generic.name', function ()
hasGeneric = true
end)
if not hasGeneric then
return false
end
source._generic = genericMgr(source)
if source.type == 'doc.type.function' then
for _, arg in ipairs(source.args) do
source._generic:addSign(arg.extends)
end
end
end
return source._generic
end
local function getReturnOfFunction(func, index)
if func.type == 'function' then
if not func._returns then
func._returns = {}
end
if not func._returns[index] then
func._returns[index] = {
type = 'function.return',
parent = func,
index = index,
}
end
return m.compileNode(func._returns[index])
end
if func.type == 'doc.type.function' then
local rtn = func.returns[index]
if not rtn then
return nil
end
local rtnNode = m.compileNode(rtn)
local generic = getObjectGeneric(func)
if not generic then
return rtnNode
end
return generic:getChild(rtnNode)
end
end
local function getReturnOfSetMetaTable(source, args)
local tbl = args and args[1]
local mt = args and args[2]
if tbl then
nodeMgr.setNode(source, m.compileNode(tbl))
end
if mt then
m.compileByParentNode(mt, '__index', function (src)
nodeMgr.setNode(source, m.compileNode(src))
end)
end
return nodeMgr.nodeCache[source]
end
local function getReturn(func, index, source, args)
if func.special == 'setmetatable' then
return getReturnOfSetMetaTable(source, args)
end
local node = m.compileNode(func)
if node then
for cnode in nodeMgr.eachNode(node) do
if cnode.type == 'function'
or cnode.type == 'doc.type.function' then
local returnNode = getReturnOfFunction(cnode, index)
if returnNode and returnNode.type == 'generic' then
returnNode = returnNode:resolve(args)
end
if returnNode then
nodeMgr.setNode(source, m.compileNode(returnNode))
end
end
end
end
return nodeMgr.nodeCache[source]
end
local function bindDocs(source)
local hasFounded = false
local isParam = source.parent.type == 'funcargs'
for _, doc in ipairs(source.bindDocs) do
if doc.type == 'doc.type' then
if not isParam then
hasFounded = true
nodeMgr.setNode(source, m.compileNode(doc))
end
end
if doc.type == 'doc.class' then
if source.type == 'local'
or (source._globalNode and guide.isSet(source)) then
hasFounded = true
nodeMgr.setNode(source, m.compileNode(doc))
end
end
if doc.type == 'doc.param' then
if isParam and source[1] == doc.param[1] then
hasFounded = true
nodeMgr.setNode(source, m.compileNode(doc))
end
end
end
return hasFounded
end
local function compileByLocalID(source)
local sources = localID.getSources(source)
if not sources then
return
end
local hasMarkDoc
for _, src in ipairs(sources) do
if src.bindDocs then
if bindDocs(src) then
hasMarkDoc = true
nodeMgr.setNode(source, m.compileNode(src))
end
end
end
for _, src in ipairs(sources) do
if src.value then
if not hasMarkDoc or guide.isLiteral(src.value) then
nodeMgr.setNode(source, m.compileNode(src.value))
end
end
end
end
---@param source vm.node
---@param key any
---@param pushResult fun(source: parser.object)
function m.compileByParentNode(source, key, pushResult)
local parentNode = m.compileNode(source)
if not parentNode then
return
end
for node in nodeMgr.eachNode(parentNode) do
local f = searchFieldMap[node.type]
if f then
f(node, key, pushResult)
end
end
end
local function selectNode(source, list, index)
local exp
if list[index] then
exp = list[index]
else
for i = index, 1, -1 do
if list[i] then
exp = list[i]
if exp.type == 'call'
or exp.type == '...' then
index = index - i + 1
end
break
end
end
end
if not exp then
return nil
end
if exp.type == 'call' then
return getReturn(exp.node, index, source, exp.args)
end
if exp.type == '...' then
-- TODO
end
return nodeMgr.setNode(source, m.compileNode(exp))
end
local compilerMap = util.switch()
: case 'boolean'
: case 'table'
: case 'integer'
: case 'number'
: case 'string'
: case 'union'
: case 'doc.type.function'
: case 'doc.type.table'
: case 'doc.type.array'
: call(function (source)
nodeMgr.setNode(source, source)
end)
: case 'function'
: call(function (source)
nodeMgr.setNode(source, source)
if source.bindDocs then
for _, doc in ipairs(source.bindDocs) do
if doc.type == 'doc.overload' then
nodeMgr.setNode(source, m.compileNode(doc))
end
end
end
end)
: case 'local'
: call(function (source)
--localMgr.declareLocal(source)
nodeMgr.setNode(source, source)
local hasMarkDoc
if source.bindDocs then
hasMarkDoc = bindDocs(source)
end
if source.ref and not hasMarkDoc then
for _, ref in ipairs(source.ref) do
if ref.type == 'setlocal' then
nodeMgr.setNode(source, m.compileNode(ref.value))
end
end
end
if source.dummy and not hasMarkDoc then
nodeMgr.setNode(source, m.compileNode(source.method.node))
end
if source.value then
if not hasMarkDoc or guide.isLiteral(source.value) then
nodeMgr.setNode(source, m.compileNode(source.value))
end
end
-- function x.y(self, ...) --> function x:y(...)
if source[1] == 'self'
and not hasMarkDoc
and source.parent.type == 'funcargs'
and source.parent[1] == source then
local setfield = source.parent.parent.parent
if setfield.type == 'setfield' then
nodeMgr.setNode(source, m.compileNode(setfield.node))
end
end
-- for x in ... do
if source.parent.type == 'in' then
m.compileNode(source.parent)
end
end)
: case 'setlocal'
: case 'getlocal'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.node))
end)
: case 'setfield'
: case 'setmethod'
: case 'setindex'
: call(function (source)
compileByLocalID(source)
end)
: case 'getfield'
: case 'getmethod'
: case 'getindex'
: call(function (source)
compileByLocalID(source)
m.compileByParentNode(source.node, guide.getKeyName(source), function (src)
nodeMgr.setNode(source, m.compileNode(src))
end)
end)
: case 'tablefield'
: case 'tableindex'
: call(function (source)
if source.value then
nodeMgr.setNode(source, m.compileNode(source.value))
end
end)
: case 'field'
: case 'method'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.parent))
end)
: case 'function.return'
: call(function (source)
local func = source.parent
local index = source.index
local hasMarkDoc
if func.bindDocs then
local generic = getObjectGeneric(func)
for _, doc in ipairs(func.bindDocs) do
if doc.type == 'doc.return' then
for _, rtn in ipairs(doc.returns) do
if rtn.returnIndex == index then
hasMarkDoc = true
local hasGeneric
if generic then
guide.eachSourceType(rtn, 'doc.generic.name', function (src)
hasGeneric = true
end)
end
local rtnNode = m.compileNode(rtn)
if hasGeneric then
nodeMgr.setNode(source, generic:getChild(rtnNode))
else
nodeMgr.setNode(source, rtnNode)
end
end
end
end
end
end
if func.returns and not hasMarkDoc then
for _, rtn in ipairs(func.returns) do
selectNode(source, rtn, index)
end
end
end)
: case 'select'
: call(function (source)
local vararg = source.vararg
if vararg.type == 'call' then
getReturn(vararg.node, source.sindex, source, vararg.args)
end
end)
: case 'in'
: call(function (source)
if not source._iterator then
-- for k, v in pairs(t) do
--> for k, v in iterator, status, initValue do
--> local k, v = iterator(status, initValue)
source._iterator = {}
source._iterArgs = {{}, {}}
-- iterator
selectNode(source._iterator, source.exps, 1)
-- status
selectNode(source._iterArgs[1], source.exps, 2)
-- initValue
selectNode(source._iterArgs[2], source.exps, 3)
end
for i, loc in ipairs(source.keys) do
getReturn(source._iterator, i, loc, source._iterArgs)
end
end)
: case 'doc.type'
: call(function (source)
for _, typeUnit in ipairs(source.types) do
nodeMgr.setNode(source, m.compileNode(typeUnit))
end
end)
: case 'doc.generic.name'
: call(function (source)
nodeMgr.setNode(source, source)
end)
: case 'doc.field'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.extends))
end)
: case 'doc.param'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.extends))
end)
: case 'doc.vararg'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.vararg))
end)
: case '...'
: call(function (source)
local func = source.parent.parent
if func.type ~= 'function' then
return
end
if not func.bindDocs then
return
end
for _, doc in ipairs(func.bindDocs) do
if doc.type == 'doc.vararg' then
nodeMgr.setNode(source, m.compileNode(doc))
end
if doc.type == 'doc.param' and doc.param[1] == '...' then
nodeMgr.setNode(source, m.compileNode(doc))
end
end
end)
: case 'doc.overload'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.overload))
end)
: case 'doc.see.name'
: call(function (source)
local type = globalMgr.getGlobal('type', source[1])
if type then
nodeMgr.setNode(source, m.compileNode(type))
end
end)
: case 'unary'
: call(function (source)
if source.op.type == 'not' then
local result = valueMgr.test(source[1])
if result == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
else
nodeMgr.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = not result,
})
end
end
if source.op.type == '#' then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
end
if source.op.type == '-' then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
end
if source.op.type == '~' then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
end
end)
: getMap()
---@param source parser.object
local function compileByNode(source)
local compiler = compilerMap[source.type]
if compiler then
compiler(source)
end
end
---@param source parser.object
local function compileByGlobal(source)
if source.type == 'global' then
nodeMgr.setNode(source, source)
return
end
if source._globalNode then
nodeMgr.setNode(source, source._globalNode)
if source._globalNode.cate == 'variable' then
local hasMarkDoc
for _, set in ipairs(source._globalNode:getSets()) do
if set.bindDocs then
if bindDocs(set) then
nodeMgr.setNode(source, m.compileNode(set))
hasMarkDoc = true
end
end
end
for _, set in ipairs(source._globalNode:getSets()) do
if set.value then
if not hasMarkDoc or guide.isLiteral(set.value) then
nodeMgr.setNode(source, m.compileNode(set.value))
end
end
end
end
if source._globalNode.cate == 'type' then
for _, set in ipairs(source._globalNode:getSets()) do
if set.type == 'doc.class' then
if set.extends then
for _, ext in ipairs(set.extends) do
if ext.type == 'doc.type.table' then
if ext._generic then
local resolved = ext._generic:resolve(source.signs)
nodeMgr.setNode(source, resolved)
else
nodeMgr.setNode(source, m.compileNode(ext))
end
end
end
end
end
if set.type == 'doc.alias' then
if set.extends._generic then
local resolved = set.extends._generic:resolve(source.signs)
nodeMgr.setNode(source, resolved)
else
nodeMgr.setNode(source, m.compileNode(set.extends))
end
end
end
end
return
end
end
---@param source parser.object
---@return vm.node
function m.compileNode(source)
if nodeMgr.nodeCache[source] ~= nil then
return nodeMgr.nodeCache[source]
end
nodeMgr.nodeCache[source] = false
compileByGlobal(source)
compileByNode(source)
--localMgr.subscribeLocal(source, source._node)
return nodeMgr.nodeCache[source]
end
return m
|