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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
|
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 config = require 'config'
local union = require 'vm.union'
---@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 'string'
: call(function (node, key, pushResult)
-- change to `string: stringlib` ?
local stringlib = globalMgr.getGlobal('type', 'stringlib')
m.getClassFields(stringlib, key, pushResult)
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(args)
local tbl = args and args[1]
local mt = args and args[2]
local node = union()
if tbl then
node:merge(m.compileNode(tbl))
end
if mt then
m.compileByParentNode(mt, '__index', function (src)
node:merge(m.compileNode(src))
end)
end
return node
end
local function getReturn(func, index, args)
if func.special == 'setmetatable' then
return getReturnOfSetMetaTable(args)
end
if func.special == 'pcall' and index > 1 then
local newArgs = {}
for i = 2, #args do
newArgs[#newArgs+1] = args[i]
end
return getReturn(args[1], index - 1, newArgs)
end
if func.special == 'xpcall' and index > 1 then
local newArgs = {}
for i = 3, #args do
newArgs[#newArgs+1] = args[i]
end
return getReturn(args[1], index - 1, newArgs)
end
local node = m.compileNode(func)
---@type vm.node.union
local result
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
result = result or union()
result:merge(m.compileNode(returnNode))
end
end
end
end
return result
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
local result
if exp.type == 'call' then
result = getReturn(exp.node, index, exp.args)
elseif exp.type == '...' then
-- TODO
end
result = result
or m.compileNode(exp)
or union()
local hasKnownType
for n in nodeMgr.eachNode(result) do
if guide.isLiteral(n)
or (n.type == 'global' and n.cate == 'type') then
hasKnownType = true
break
end
end
if not hasKnownType then
result = nodeMgr.mergeNode(result, globalMgr.getGlobal('type', 'unknown'))
end
return nodeMgr.setNode(source, result)
end
local compilerMap = util.switch()
: case 'nil'
: 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 'paren'
: call(function (source)
nodeMgr.setNode(source, m.compileNode(source.exp))
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
local hasMarkParam
-- 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
hasMarkParam = true
nodeMgr.setNode(source, m.compileNode(setfield.node))
end
end
if source.parent.type == 'funcargs' and not hasMarkDoc and not hasMarkParam then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'any'))
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
local node = getReturn(vararg.node, source.sindex, vararg.args)
nodeMgr.setNode(source, node)
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
local node = getReturn(source._iterator, i, source._iterArgs)
nodeMgr.setNode(loc, node)
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.type.integer'
: call(function (source)
nodeMgr.setNode(source, source)
end)
: case 'doc.type.enum'
: call(function (source)
nodeMgr.setNode(source, source)
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 'doc.type.arg'
: call(function (source)
if source.extends then
nodeMgr.setNode(source, m.compileNode(source.extends))
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'any'))
end
end)
: case 'unary'
: call(function (source)
local valueMgr = require 'vm.value'
if source.op.type == 'not' then
local result = valueMgr.test(source[1])
if result == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
return
else
nodeMgr.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = not result,
})
return
end
end
if source.op.type == '#' then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
if source.op.type == '-' then
local v = valueMgr.getNumber(source[1])
if v == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
else
nodeMgr.setNode(source, {
type = 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = -v,
})
return
end
end
if source.op.type == '~' then
local v = valueMgr.getInteger(source[1])
if v == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
else
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = ~v,
})
return
end
end
end)
: case 'binary'
: call(function (source)
local valueMgr = require 'vm.value'
if source.op.type == 'and' then
local r1 = valueMgr.test(source[1])
if r1 == true then
nodeMgr.setNode(source, m.compileNode(source[2]))
return
end
if r1 == false then
nodeMgr.setNode(source, m.compileNode(source[1]))
return
end
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
return
end
if source.op.type == 'or' then
local r1 = valueMgr.test(source[1])
if r1 == true then
nodeMgr.setNode(source, m.compileNode(source[1]))
return
end
if r1 == false then
nodeMgr.setNode(source, m.compileNode(source[2]))
return
end
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
return
end
if source.op.type == '==' then
local result = valueMgr.equal(source[1], source[2])
if result == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
return
else
nodeMgr.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
end
end
if source.op.type == '~=' then
local result = valueMgr.equal(source[1], source[2])
if result == nil then
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'boolean'))
return
else
nodeMgr.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = not result,
})
return
end
end
if source.op.type == '<<' then
local a = valueMgr.getInteger(source[1])
local b = valueMgr.getInteger(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = a << b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
end
if source.op.type == '>>' then
local a = valueMgr.getInteger(source[1])
local b = valueMgr.getInteger(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = a >> b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
end
if source.op.type == '&' then
local a = valueMgr.getInteger(source[1])
local b = valueMgr.getInteger(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = a & b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
end
if source.op.type == '|' then
local a = valueMgr.getInteger(source[1])
local b = valueMgr.getInteger(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = a | b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
end
if source.op.type == '~' then
local a = valueMgr.getInteger(source[1])
local b = valueMgr.getInteger(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = a ~ b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'integer'))
return
end
end
if source.op.type == '+' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
local result = a + b
nodeMgr.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '-' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
local result = a - b
nodeMgr.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '*' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
local result = a * b
nodeMgr.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '/' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = a / b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '%' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
local result = a % b
nodeMgr.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '^' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
nodeMgr.setNode(source, {
type = 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = a ^ b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '//' then
local a = valueMgr.getNumber(source[1])
local b = valueMgr.getNumber(source[2])
if a and b then
local result = a // b
nodeMgr.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'number'))
return
end
end
if source.op.type == '..' then
local a = valueMgr.getString(source[1])
or valueMgr.getNumber(source[1])
local b = valueMgr.getString(source[2])
or valueMgr.getNumber(source[2])
if a and b then
if type(a) == 'number' or type(b) == 'number' then
local uri = guide.getUri(source)
local version = config.get(uri, 'Lua.runtime.version')
if math.tointeger(a) and math.type(a) == 'float' then
if version == 'Lua 5.3' or version == 'Lua 5.4' then
a = ('%.1f'):format(a)
else
a = ('%.0f'):format(a)
end
end
if math.tointeger(b) and math.type(b) == 'float' then
if version == 'Lua 5.3' or version == 'Lua 5.4' then
b = ('%.1f'):format(b)
else
b = ('%.0f'):format(b)
end
end
end
nodeMgr.setNode(source, {
type = 'string',
start = source.start,
finish = source.finish,
parent = source,
[1] = a .. b,
})
return
else
nodeMgr.setNode(source, globalMgr.getGlobal('type', 'string'))
return
end
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 vm.node
local function compileByGlobal(source)
if source.type == 'global' then
nodeMgr.setNode(source, source)
if source.cate == 'variable' then
local hasMarkDoc
for _, set in ipairs(source: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: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.cate == 'type' then
for _, set in ipairs(source: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 not ext._generic then
nodeMgr.setNode(source, m.compileNode(ext))
end
end
end
end
end
if set.type == 'doc.alias' then
if not set.extends._generic then
nodeMgr.setNode(source, m.compileNode(set.extends))
end
end
end
end
return
end
if source._globalNode then
nodeMgr.setNode(source, m.compileNode(source._globalNode))
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)
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)
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
|