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
|
return describe("switch", function()
it("should match single value", function()
local value = "cool"
local result
if "cool" == value then
result = "matched"
else
result = "not matched"
end
return assert.same(result, "matched")
end)
it("should match multiple values with or", function()
local hi = "world"
local matched = false
if "one" == hi or "two" == hi then
matched = true
end
assert.is_false(matched)
hi = "one"
if "one" == hi or "two" == hi then
matched = true
end
return assert.is_true(matched)
end)
it("should execute else branch when no match", function()
local value = "other"
local result
if "cool" == value then
result = "matched cool"
elseif "yeah" == value then
result = "matched yeah"
else
result = "else branch"
end
return assert.same(result, "else branch")
end)
it("should destructure table with single key", function()
local tb = {
x = 100
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local x = tb.x
if x ~= nil then
_match_0 = true
result = x
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, 100)
end)
it("should destructure table with multiple keys", function()
local tb = {
x = 100,
y = 200
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local x = tb.x
local y = tb.y
if x ~= nil and y ~= nil then
_match_0 = true
result = x + y
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, 300)
end)
it("should destructure table with default values", function()
local tb = {
a = 1
}
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
if _tab_0 then
local a = tb.a
local b = tb.b
if a == nil then
a = 1
end
if b == nil then
b = 2
end
assert.same(a, 1)
return assert.same(b, 2)
end
end)
it("should destructure nested tables", function()
local dict = {
{ },
{
1,
2,
3
},
a = {
b = {
c = 1
}
},
x = {
y = {
z = 1
}
}
}
local matched = false
do
local _type_0 = type(dict)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
if _tab_0 then
local first = dict[1]
local one
do
local _obj_0 = dict[2]
local _type_1 = type(_obj_0)
if "table" == _type_1 or "userdata" == _type_1 then
one = _obj_0[1]
end
end
local two
do
local _obj_0 = dict[2]
local _type_1 = type(_obj_0)
if "table" == _type_1 or "userdata" == _type_1 then
two = _obj_0[2]
end
end
local three
do
local _obj_0 = dict[2]
local _type_1 = type(_obj_0)
if "table" == _type_1 or "userdata" == _type_1 then
three = _obj_0[3]
end
end
local c
do
local _obj_0 = dict.a
local _type_1 = type(_obj_0)
if "table" == _type_1 or "userdata" == _type_1 then
do
local _obj_1 = _obj_0.b
local _type_2 = type(_obj_1)
if "table" == _type_2 or "userdata" == _type_2 then
c = _obj_1.c
end
end
end
end
local z
do
local _obj_0 = dict.x
local _type_1 = type(_obj_0)
if "table" == _type_1 or "userdata" == _type_1 then
do
local _obj_1 = _obj_0.y
local _type_2 = type(_obj_1)
if "table" == _type_2 or "userdata" == _type_2 then
z = _obj_1.z
end
end
end
end
if first ~= nil and one ~= nil and two ~= nil and three ~= nil and c ~= nil and z ~= nil then
matched = type(first) == 'table' and one == 1 and two == 2 and three == 3 and c == 1 and z == 1
end
end
end
return assert.is_true(matched)
end)
it("should destructure arrays with exact match", function()
local tb = {
1,
2,
3
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
if 1 == tb[1] and 2 == tb[2] and 3 == tb[3] then
_match_0 = true
result = "exact match"
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, "exact match")
end)
it("should destructure arrays with variables", function()
local tb = {
1,
"b",
3
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local b = tb[2]
if 1 == tb[1] and b ~= nil and 3 == tb[3] then
_match_0 = true
result = b
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, "b")
end)
it("should destructure arrays with defaults", function()
local tb = {
1,
2
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local b = tb[3]
if b == nil then
b = 3
end
if 1 == tb[1] and 2 == tb[2] then
_match_0 = true
result = b
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, 3)
end)
it("should match pattern with __class", function()
local ClassA
do
local _class_0
local _base_0 = { }
if _base_0.__index == nil then
_base_0.__index = _base_0
end
_class_0 = setmetatable({
__init = function() end,
__base = _base_0,
__name = "ClassA"
}, {
__index = _base_0,
__call = function(cls, ...)
local _self_0 = setmetatable({ }, _base_0)
cls.__init(_self_0, ...)
return _self_0
end
})
_base_0.__class = _class_0
ClassA = _class_0
end
local ClassB
do
local _class_0
local _base_0 = { }
if _base_0.__index == nil then
_base_0.__index = _base_0
end
_class_0 = setmetatable({
__init = function() end,
__base = _base_0,
__name = "ClassB"
}, {
__index = _base_0,
__call = function(cls, ...)
local _self_0 = setmetatable({ }, _base_0)
cls.__init(_self_0, ...)
return _self_0
end
})
_base_0.__class = _class_0
ClassB = _class_0
end
local item = ClassA()
local result
do
local _type_0 = type(item)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
ClassA = item.__class
if ClassA ~= nil then
_match_0 = true
result = "Object A"
end
end
if not _match_0 then
local _match_1 = false
if _tab_0 then
ClassB = item.__class
if ClassB ~= nil then
_match_1 = true
result = "Object B"
end
end
if not _match_1 then
result = "unknown"
end
end
end
return assert.same(result, "Object A")
end)
it("should match pattern with metatable", function()
local tb = setmetatable({ }, {
__mode = "v"
})
local metatable_matched = false
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
if _tab_0 then
local mt = getmetatable(tb)
if mt ~= nil then
metatable_matched = mt ~= nil
end
end
end
return assert.is_true(metatable_matched)
end)
it("should use switch as expression in assignment", function()
local tb = {
x = "abc"
}
local matched
if 1 == tb then
matched = "1"
else
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local x = tb.x
if x ~= nil then
_match_0 = true
matched = x
end
end
if not _match_0 then
if false == tb then
matched = "false"
else
matched = nil
end
end
end
end
return assert.same(matched, "abc")
end)
it("should use switch in return statement", function()
local fn
fn = function(tb)
if nil == tb then
return "invalid"
else
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local a = tb.a
local b = tb.b
if a ~= nil and b ~= nil then
_match_0 = true
return tostring(a + b)
end
end
if not _match_0 then
if 1 == tb or 2 == tb or 3 == tb or 4 == tb or 5 == tb then
return "number 1 - 5"
else
return "should not reach here"
end
end
end
end
assert.same(fn({
a = 1,
b = 2
}), "3")
assert.same(fn(3), "number 1 - 5")
return assert.same(fn(nil), "invalid")
end)
it("should support pattern matching assignment with :=", function()
local v = "hello"
local matched = false
do
v = "hello"
if "hello" == v then
matched = true
else
matched = false
end
end
assert.is_true(matched)
return assert.same(v, "hello")
end)
it("should match with computed expressions", function()
local hi = 4
local matched = false
if (3 + 1) == hi or (function()
return 4
end)() == hi or (5 - 1) == hi then
matched = true
end
return assert.is_true(matched)
end)
it("should handle nested array destructuring", function()
local tb = {
{
a = 1,
b = 2
},
{
a = 3,
b = 4
},
{
a = 5,
b = 6
},
"fourth"
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local fourth = tb[4]
local _val_0
do
local _obj_0 = tb[1]
if _obj_0 ~= nil then
_val_0 = _obj_0.a
end
end
local _val_1
do
local _obj_0 = tb[1]
if _obj_0 ~= nil then
_val_1 = _obj_0.b
end
end
local _val_2
do
local _obj_0 = tb[2]
if _obj_0 ~= nil then
_val_2 = _obj_0.a
end
end
local _val_3
do
local _obj_0 = tb[2]
if _obj_0 ~= nil then
_val_3 = _obj_0.b
end
end
local _val_4
do
local _obj_0 = tb[3]
if _obj_0 ~= nil then
_val_4 = _obj_0.a
end
end
local _val_5
do
local _obj_0 = tb[3]
if _obj_0 ~= nil then
_val_5 = _obj_0.b
end
end
if 1 == _val_0 and 2 == _val_1 and 3 == _val_2 and 4 == _val_3 and 5 == _val_4 and 6 == _val_5 and fourth ~= nil then
_match_0 = true
result = fourth
end
end
if not _match_0 then
result = "no match"
end
end
return assert.same(result, "fourth")
end)
it("should match combined patterns", function()
local tb = {
success = true,
result = "data"
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
result = tb.result
if true == tb.success and result ~= nil then
_match_0 = true
result = {
"success",
result
}
end
end
if not _match_0 then
local _match_1 = false
if _tab_0 then
if false == tb.success then
_match_1 = true
result = {
"failed",
result
}
end
end
if not _match_1 then
result = {
"invalid"
}
end
end
end
return assert.same(result, {
"success",
"data"
})
end)
it("should match type discriminated patterns", function()
local tb = {
type = "success",
content = "data"
}
local result
do
local _type_0 = type(tb)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local content = tb.content
if "success" == tb.type and content ~= nil then
_match_0 = true
result = {
"success",
content
}
end
end
if not _match_0 then
local _match_1 = false
if _tab_0 then
local content = tb.content
if "error" == tb.type and content ~= nil then
_match_1 = true
result = {
"error",
content
}
end
end
if not _match_1 then
result = {
"invalid"
}
end
end
end
return assert.same(result, {
"success",
"data"
})
end)
it("should match with wildcard array capture", function()
local clientData = {
"Meta",
"CUST_1001",
"CHK123"
}
local metadata = nil
local customerId = nil
local checksum = nil
do
local _type_0 = type(clientData)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
if _tab_0 then
local capturedMetadata
do
local _accum_0 = { }
local _len_0 = 1
local _max_0 = #clientData + -3 + 1
for _index_0 = 1, _max_0 do
local _item_0 = clientData[_index_0]
_accum_0[_len_0] = _item_0
_len_0 = _len_0 + 1
end
capturedMetadata = _accum_0
end
customerId = clientData[#clientData - 1]
checksum = clientData[#clientData]
if customerId ~= nil and checksum ~= nil then
metadata = capturedMetadata
end
end
end
assert.same(metadata, {
"Meta"
})
assert.same(customerId, "CUST_1001")
return assert.same(checksum, "CHK123")
end)
it("should work with complex tuple patterns", function()
local handlePath
handlePath = function(segments)
local _type_0 = type(segments)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local resource = segments[#segments - 1]
local action = segments[#segments]
if resource ~= nil and action ~= nil then
_match_0 = true
return {
"Resource: " .. tostring(resource),
"Action: " .. tostring(action)
}
end
end
if not _match_0 then
return {
"no match"
}
end
end
local result = handlePath({
"admin",
"logs",
"view"
})
return assert.same(result, {
"Resource: logs",
"Action: view"
})
end)
it("should match boolean false correctly", function()
local items = {
{
x = 100,
y = 200
},
{
width = 300,
height = 400
},
false
}
local results = { }
for _index_0 = 1, #items do
local item = items[_index_0]
local _type_0 = type(item)
local _tab_0 = "table" == _type_0 or "userdata" == _type_0
local _match_0 = false
if _tab_0 then
local x = item.x
local y = item.y
if x ~= nil and y ~= nil then
_match_0 = true
table.insert(results, "Vec2")
end
end
if not _match_0 then
local _match_1 = false
if _tab_0 then
local width = item.width
local height = item.height
if width ~= nil and height ~= nil then
_match_1 = true
table.insert(results, "Size")
end
end
if not _match_1 then
if false == item then
table.insert(results, "None")
end
end
end
end
return assert.same(results, {
"Vec2",
"Size",
"None"
})
end)
it("should handle switch with then syntax", function()
local value = "cool"
local result
if "cool" == value then
result = "matched cool"
else
result = "else branch"
end
return assert.same(result, "matched cool")
end)
return it("should handle switch in function call", function()
local something = 1
local getValue
getValue = function()
if 1 == something then
return "yes"
else
return "no"
end
end
return assert.same(getValue(), "yes")
end)
end)
|