File: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.sourcemap.txt

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (2259 lines) | stat: -rw-r--r-- 200,075 bytes parent folder | download | duplicates (4)
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
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
===================================================================
JsFile: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js
mapUrl: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js.map
sourceRoot: 
sources: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js
sourceFile:sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.ts
-------------------------------------------------------------------
>>>var robot = { name: "mower", skill: "mowing" };
1 >
2 >^^^^
3 >    ^^^^^
4 >         ^^^
5 >            ^^
6 >              ^^^^
7 >                  ^^
8 >                    ^^^^^^^
9 >                           ^^
10>                             ^^^^^
11>                                  ^^
12>                                    ^^^^^^^^
13>                                            ^^
14>                                              ^
15>                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >declare var console: {
  >    log(msg: any): void;
  >}
  >interface Robot {
  >    name: string;
  >    skill: string;
  >}
  >
  >interface MultiRobot {
  >    name: string;
  >    skills: {
  >        primary?: string;
  >        secondary?: string;
  >    };
  >}
  >
  >
2 >let 
3 >    robot
4 >         : Robot = 
5 >            { 
6 >              name
7 >                  : 
8 >                    "mower"
9 >                           , 
10>                             skill
11>                                  : 
12>                                    "mowing"
13>                                             }
14>                                              ;
1 >Emitted(1, 1) Source(17, 1) + SourceIndex(0)
2 >Emitted(1, 5) Source(17, 5) + SourceIndex(0)
3 >Emitted(1, 10) Source(17, 10) + SourceIndex(0)
4 >Emitted(1, 13) Source(17, 20) + SourceIndex(0)
5 >Emitted(1, 15) Source(17, 22) + SourceIndex(0)
6 >Emitted(1, 19) Source(17, 26) + SourceIndex(0)
7 >Emitted(1, 21) Source(17, 28) + SourceIndex(0)
8 >Emitted(1, 28) Source(17, 35) + SourceIndex(0)
9 >Emitted(1, 30) Source(17, 37) + SourceIndex(0)
10>Emitted(1, 35) Source(17, 42) + SourceIndex(0)
11>Emitted(1, 37) Source(17, 44) + SourceIndex(0)
12>Emitted(1, 45) Source(17, 52) + SourceIndex(0)
13>Emitted(1, 47) Source(17, 54) + SourceIndex(0)
14>Emitted(1, 48) Source(17, 55) + SourceIndex(0)
---
>>>var multiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
1->
2 >^^^^
3 >    ^^^^^^^^^^
4 >              ^^^
5 >                 ^^
6 >                   ^^^^
7 >                       ^^
8 >                         ^^^^^^^
9 >                                ^^
10>                                  ^^^^^^
11>                                        ^^
12>                                          ^^
13>                                            ^^^^^^^
14>                                                   ^^
15>                                                     ^^^^^^^^
16>                                                             ^^
17>                                                               ^^^^^^^^^
18>                                                                        ^^
19>                                                                          ^^^^^^
20>                                                                                ^^
21>                                                                                  ^^
22>                                                                                    ^
1->
  >
2 >let 
3 >    multiRobot
4 >              : MultiRobot = 
5 >                 { 
6 >                   name
7 >                       : 
8 >                         "mower"
9 >                                , 
10>                                  skills
11>                                        : 
12>                                          { 
13>                                            primary
14>                                                   : 
15>                                                     "mowing"
16>                                                             , 
17>                                                               secondary
18>                                                                        : 
19>                                                                          "none"
20>                                                                                 }
21>                                                                                   }
22>                                                                                    ;
1->Emitted(2, 1) Source(18, 1) + SourceIndex(0)
2 >Emitted(2, 5) Source(18, 5) + SourceIndex(0)
3 >Emitted(2, 15) Source(18, 15) + SourceIndex(0)
4 >Emitted(2, 18) Source(18, 30) + SourceIndex(0)
5 >Emitted(2, 20) Source(18, 32) + SourceIndex(0)
6 >Emitted(2, 24) Source(18, 36) + SourceIndex(0)
7 >Emitted(2, 26) Source(18, 38) + SourceIndex(0)
8 >Emitted(2, 33) Source(18, 45) + SourceIndex(0)
9 >Emitted(2, 35) Source(18, 47) + SourceIndex(0)
10>Emitted(2, 41) Source(18, 53) + SourceIndex(0)
11>Emitted(2, 43) Source(18, 55) + SourceIndex(0)
12>Emitted(2, 45) Source(18, 57) + SourceIndex(0)
13>Emitted(2, 52) Source(18, 64) + SourceIndex(0)
14>Emitted(2, 54) Source(18, 66) + SourceIndex(0)
15>Emitted(2, 62) Source(18, 74) + SourceIndex(0)
16>Emitted(2, 64) Source(18, 76) + SourceIndex(0)
17>Emitted(2, 73) Source(18, 85) + SourceIndex(0)
18>Emitted(2, 75) Source(18, 87) + SourceIndex(0)
19>Emitted(2, 81) Source(18, 93) + SourceIndex(0)
20>Emitted(2, 83) Source(18, 95) + SourceIndex(0)
21>Emitted(2, 85) Source(18, 97) + SourceIndex(0)
22>Emitted(2, 86) Source(18, 98) + SourceIndex(0)
---
>>>function getRobot() {
1 >
2 >^^^^^^^^^
3 >         ^^^^^^^^
4 >                 ^->
1 >
  >
2 >function 
3 >         getRobot
1 >Emitted(3, 1) Source(19, 1) + SourceIndex(0)
2 >Emitted(3, 10) Source(19, 10) + SourceIndex(0)
3 >Emitted(3, 18) Source(19, 18) + SourceIndex(0)
---
>>>    return robot;
1->^^^^
2 >    ^^^^^^^
3 >           ^^^^^
4 >                ^
1->() {
  >    
2 >    return 
3 >           robot
4 >                ;
1->Emitted(4, 5) Source(20, 5) + SourceIndex(0)
2 >Emitted(4, 12) Source(20, 12) + SourceIndex(0)
3 >Emitted(4, 17) Source(20, 17) + SourceIndex(0)
4 >Emitted(4, 18) Source(20, 18) + SourceIndex(0)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >
2 >}
1 >Emitted(5, 1) Source(21, 1) + SourceIndex(0)
2 >Emitted(5, 2) Source(21, 2) + SourceIndex(0)
---
>>>function getMultiRobot() {
1->
2 >^^^^^^^^^
3 >         ^^^^^^^^^^^^^
4 >                      ^->
1->
  >
2 >function 
3 >         getMultiRobot
1->Emitted(6, 1) Source(22, 1) + SourceIndex(0)
2 >Emitted(6, 10) Source(22, 10) + SourceIndex(0)
3 >Emitted(6, 23) Source(22, 23) + SourceIndex(0)
---
>>>    return multiRobot;
1->^^^^
2 >    ^^^^^^^
3 >           ^^^^^^^^^^
4 >                     ^
1->() {
  >    
2 >    return 
3 >           multiRobot
4 >                     ;
1->Emitted(7, 5) Source(23, 5) + SourceIndex(0)
2 >Emitted(7, 12) Source(23, 12) + SourceIndex(0)
3 >Emitted(7, 22) Source(23, 22) + SourceIndex(0)
4 >Emitted(7, 23) Source(23, 23) + SourceIndex(0)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >
2 >}
1 >Emitted(8, 1) Source(24, 1) + SourceIndex(0)
2 >Emitted(8, 2) Source(24, 2) + SourceIndex(0)
---
>>>for (var _a = robot.name, nameA = _a === void 0 ? "noName" : _a, i = 0; i < 1; i++) {
1->
2 >^^^^^
3 >     ^^^^
4 >         ^^^^^
5 >              ^^^^^
6 >                   ^^^^^
7 >                        ^^
8 >                          ^^^^^
9 >                               ^^^^^^^^^^^^^^^^^^^
10>                                                  ^^^^^^^^
11>                                                          ^^^^^
12>                                                               ^^
13>                                                                 ^
14>                                                                  ^^^
15>                                                                     ^
16>                                                                      ^^
17>                                                                        ^
18>                                                                         ^^^
19>                                                                            ^
20>                                                                             ^^
21>                                                                               ^
22>                                                                                ^^
23>                                                                                  ^^
1->
  >
  >
2 >for (let {
3 >     
4 >         name: nameA= "noName" } = 
5 >              robot
6 >                   
7 >                        
8 >                          nameA
9 >                               = 
10>                                                  "noName"
11>                                                          
12>                                                                } = robot, 
13>                                                                 i
14>                                                                   = 
15>                                                                     0
16>                                                                      ; 
17>                                                                        i
18>                                                                          < 
19>                                                                            1
20>                                                                             ; 
21>                                                                               i
22>                                                                                ++
23>                                                                                  ) 
1->Emitted(9, 1) Source(26, 1) + SourceIndex(0)
2 >Emitted(9, 6) Source(26, 11) + SourceIndex(0)
3 >Emitted(9, 10) Source(26, 11) + SourceIndex(0)
4 >Emitted(9, 15) Source(26, 37) + SourceIndex(0)
5 >Emitted(9, 20) Source(26, 42) + SourceIndex(0)
6 >Emitted(9, 25) Source(26, 32) + SourceIndex(0)
7 >Emitted(9, 27) Source(26, 17) + SourceIndex(0)
8 >Emitted(9, 32) Source(26, 22) + SourceIndex(0)
9 >Emitted(9, 51) Source(26, 24) + SourceIndex(0)
10>Emitted(9, 59) Source(26, 32) + SourceIndex(0)
11>Emitted(9, 64) Source(26, 32) + SourceIndex(0)
12>Emitted(9, 66) Source(26, 44) + SourceIndex(0)
13>Emitted(9, 67) Source(26, 45) + SourceIndex(0)
14>Emitted(9, 70) Source(26, 48) + SourceIndex(0)
15>Emitted(9, 71) Source(26, 49) + SourceIndex(0)
16>Emitted(9, 73) Source(26, 51) + SourceIndex(0)
17>Emitted(9, 74) Source(26, 52) + SourceIndex(0)
18>Emitted(9, 77) Source(26, 55) + SourceIndex(0)
19>Emitted(9, 78) Source(26, 56) + SourceIndex(0)
20>Emitted(9, 80) Source(26, 58) + SourceIndex(0)
21>Emitted(9, 81) Source(26, 59) + SourceIndex(0)
22>Emitted(9, 83) Source(26, 61) + SourceIndex(0)
23>Emitted(9, 85) Source(26, 63) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(10, 5) Source(27, 5) + SourceIndex(0)
2 >Emitted(10, 12) Source(27, 12) + SourceIndex(0)
3 >Emitted(10, 13) Source(27, 13) + SourceIndex(0)
4 >Emitted(10, 16) Source(27, 16) + SourceIndex(0)
5 >Emitted(10, 17) Source(27, 17) + SourceIndex(0)
6 >Emitted(10, 22) Source(27, 22) + SourceIndex(0)
7 >Emitted(10, 23) Source(27, 23) + SourceIndex(0)
8 >Emitted(10, 24) Source(27, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(11, 2) Source(28, 2) + SourceIndex(0)
---
>>>for (var _b = getRobot().name, nameA = _b === void 0 ? "noName" : _b, i = 0; i < 1; i++) {
1->
2 >^^^^^
3 >     ^^^^
4 >         ^^^^^
5 >              ^^^^^^^^
6 >                      ^^
7 >                        ^^^^^
8 >                             ^^
9 >                               ^^^^^
10>                                    ^^^^^^^^^^^^^^^^^^^
11>                                                       ^^^^^^^^
12>                                                               ^^^^^
13>                                                                    ^^
14>                                                                      ^
15>                                                                       ^^^
16>                                                                          ^
17>                                                                           ^^
18>                                                                             ^
19>                                                                              ^^^
20>                                                                                 ^
21>                                                                                  ^^
22>                                                                                    ^
23>                                                                                     ^^
24>                                                                                       ^^
1->
  >
2 >for (let {
3 >     
4 >         name: nameA = "noName" } = 
5 >              getRobot
6 >                      ()
7 >                        
8 >                             
9 >                               nameA
10>                                     = 
11>                                                       "noName"
12>                                                               
13>                                                                     } = getRobot(), 
14>                                                                      i
15>                                                                        = 
16>                                                                          0
17>                                                                           ; 
18>                                                                             i
19>                                                                               < 
20>                                                                                 1
21>                                                                                  ; 
22>                                                                                    i
23>                                                                                     ++
24>                                                                                       ) 
1->Emitted(12, 1) Source(29, 1) + SourceIndex(0)
2 >Emitted(12, 6) Source(29, 11) + SourceIndex(0)
3 >Emitted(12, 10) Source(29, 11) + SourceIndex(0)
4 >Emitted(12, 15) Source(29, 38) + SourceIndex(0)
5 >Emitted(12, 23) Source(29, 46) + SourceIndex(0)
6 >Emitted(12, 25) Source(29, 48) + SourceIndex(0)
7 >Emitted(12, 30) Source(29, 33) + SourceIndex(0)
8 >Emitted(12, 32) Source(29, 17) + SourceIndex(0)
9 >Emitted(12, 37) Source(29, 22) + SourceIndex(0)
10>Emitted(12, 56) Source(29, 25) + SourceIndex(0)
11>Emitted(12, 64) Source(29, 33) + SourceIndex(0)
12>Emitted(12, 69) Source(29, 33) + SourceIndex(0)
13>Emitted(12, 71) Source(29, 50) + SourceIndex(0)
14>Emitted(12, 72) Source(29, 51) + SourceIndex(0)
15>Emitted(12, 75) Source(29, 54) + SourceIndex(0)
16>Emitted(12, 76) Source(29, 55) + SourceIndex(0)
17>Emitted(12, 78) Source(29, 57) + SourceIndex(0)
18>Emitted(12, 79) Source(29, 58) + SourceIndex(0)
19>Emitted(12, 82) Source(29, 61) + SourceIndex(0)
20>Emitted(12, 83) Source(29, 62) + SourceIndex(0)
21>Emitted(12, 85) Source(29, 64) + SourceIndex(0)
22>Emitted(12, 86) Source(29, 65) + SourceIndex(0)
23>Emitted(12, 88) Source(29, 67) + SourceIndex(0)
24>Emitted(12, 90) Source(29, 69) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(13, 5) Source(30, 5) + SourceIndex(0)
2 >Emitted(13, 12) Source(30, 12) + SourceIndex(0)
3 >Emitted(13, 13) Source(30, 13) + SourceIndex(0)
4 >Emitted(13, 16) Source(30, 16) + SourceIndex(0)
5 >Emitted(13, 17) Source(30, 17) + SourceIndex(0)
6 >Emitted(13, 22) Source(30, 22) + SourceIndex(0)
7 >Emitted(13, 23) Source(30, 23) + SourceIndex(0)
8 >Emitted(13, 24) Source(30, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(14, 2) Source(31, 2) + SourceIndex(0)
---
>>>for (var _c = { name: "trimmer", skill: "trimming" }.name, nameA = _c === void 0 ? "noName" : _c, i = 0; i < 1; i++) {
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>                                                                                                                   ^^
1->
  >
2 >for (let {
3 >     
4 >         name: nameA = "noName" } = <Robot>
5 >              { 
6 >                name
7 >                    : 
8 >                      "trimmer"
9 >                               , 
10>                                 skill
11>                                      : 
12>                                        "trimming"
13>                                                   }
14>                                                    
15>                                                         
16>                                                           nameA
17>                                                                 = 
18>                                                                                   "noName"
19>                                                                                           
20>                                                                                                 } = <Robot>{ name: "trimmer", skill: "trimming" }, 
21>                                                                                                  i
22>                                                                                                    = 
23>                                                                                                      0
24>                                                                                                       ; 
25>                                                                                                         i
26>                                                                                                           < 
27>                                                                                                             1
28>                                                                                                              ; 
29>                                                                                                                i
30>                                                                                                                 ++
31>                                                                                                                   ) 
1->Emitted(15, 1) Source(32, 1) + SourceIndex(0)
2 >Emitted(15, 6) Source(32, 11) + SourceIndex(0)
3 >Emitted(15, 10) Source(32, 11) + SourceIndex(0)
4 >Emitted(15, 15) Source(32, 45) + SourceIndex(0)
5 >Emitted(15, 17) Source(32, 47) + SourceIndex(0)
6 >Emitted(15, 21) Source(32, 51) + SourceIndex(0)
7 >Emitted(15, 23) Source(32, 53) + SourceIndex(0)
8 >Emitted(15, 32) Source(32, 62) + SourceIndex(0)
9 >Emitted(15, 34) Source(32, 64) + SourceIndex(0)
10>Emitted(15, 39) Source(32, 69) + SourceIndex(0)
11>Emitted(15, 41) Source(32, 71) + SourceIndex(0)
12>Emitted(15, 51) Source(32, 81) + SourceIndex(0)
13>Emitted(15, 53) Source(32, 83) + SourceIndex(0)
14>Emitted(15, 58) Source(32, 33) + SourceIndex(0)
15>Emitted(15, 60) Source(32, 17) + SourceIndex(0)
16>Emitted(15, 65) Source(32, 22) + SourceIndex(0)
17>Emitted(15, 84) Source(32, 25) + SourceIndex(0)
18>Emitted(15, 92) Source(32, 33) + SourceIndex(0)
19>Emitted(15, 97) Source(32, 33) + SourceIndex(0)
20>Emitted(15, 99) Source(32, 85) + SourceIndex(0)
21>Emitted(15, 100) Source(32, 86) + SourceIndex(0)
22>Emitted(15, 103) Source(32, 89) + SourceIndex(0)
23>Emitted(15, 104) Source(32, 90) + SourceIndex(0)
24>Emitted(15, 106) Source(32, 92) + SourceIndex(0)
25>Emitted(15, 107) Source(32, 93) + SourceIndex(0)
26>Emitted(15, 110) Source(32, 96) + SourceIndex(0)
27>Emitted(15, 111) Source(32, 97) + SourceIndex(0)
28>Emitted(15, 113) Source(32, 99) + SourceIndex(0)
29>Emitted(15, 114) Source(32, 100) + SourceIndex(0)
30>Emitted(15, 116) Source(32, 102) + SourceIndex(0)
31>Emitted(15, 118) Source(32, 104) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(16, 5) Source(33, 5) + SourceIndex(0)
2 >Emitted(16, 12) Source(33, 12) + SourceIndex(0)
3 >Emitted(16, 13) Source(33, 13) + SourceIndex(0)
4 >Emitted(16, 16) Source(33, 16) + SourceIndex(0)
5 >Emitted(16, 17) Source(33, 17) + SourceIndex(0)
6 >Emitted(16, 22) Source(33, 22) + SourceIndex(0)
7 >Emitted(16, 23) Source(33, 23) + SourceIndex(0)
8 >Emitted(16, 24) Source(33, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(17, 2) Source(34, 2) + SourceIndex(0)
---
>>>for (var _d = multiRobot.skills, _e = _d === void 0 ? { primary: "none", secondary: "none" } : _d, _f = _e.primary, primaryA = _f === void 0 ? "primary" : _f, _g = _e.secondary, secondaryA = _g === void 0 ? "secondary" : _g, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                  ^^
1->
  >
2 >for (let {
  >    
3 >     
4 >         skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = 
5 >              multiRobot
6 >                        
7 >                               
8 >                                 skills: {
  >                                         primary: primaryA = "primary",
  >                                         secondary: secondaryA = "secondary"
  >                                     } = 
9 >                                                      { 
10>                                                        primary
11>                                                               : 
12>                                                                 "none"
13>                                                                       , 
14>                                                                         secondary
15>                                                                                  : 
16>                                                                                    "none"
17>                                                                                           }
18>                                                                                            
19>                                                                                                 
20>                                                                                                   primary: primaryA = "primary"
21>                                                                                                                  
22>                                                                                                                    primaryA
23>                                                                                                                             = 
24>                                                                                                                                               "primary"
25>                                                                                                                                                        
26>                                                                                                                                                             ,
  >                                                                                                                                                                     
27>                                                                                                                                                               secondary: secondaryA = "secondary"
28>                                                                                                                                                                                
29>                                                                                                                                                                                  secondaryA
30>                                                                                                                                                                                             = 
31>                                                                                                                                                                                                               "secondary"
32>                                                                                                                                                                                                                          
33>                                                                                                                                                                                                                               
  >                                                                                                                                                                                                                                   } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                               } = multiRobot, 
34>                                                                                                                                                                                                                                 i
35>                                                                                                                                                                                                                                   = 
36>                                                                                                                                                                                                                                     0
37>                                                                                                                                                                                                                                      ; 
38>                                                                                                                                                                                                                                        i
39>                                                                                                                                                                                                                                          < 
40>                                                                                                                                                                                                                                            1
41>                                                                                                                                                                                                                                             ; 
42>                                                                                                                                                                                                                                               i
43>                                                                                                                                                                                                                                                ++
44>                                                                                                                                                                                                                                                  ) 
1->Emitted(18, 1) Source(35, 1) + SourceIndex(0)
2 >Emitted(18, 6) Source(36, 5) + SourceIndex(0)
3 >Emitted(18, 10) Source(36, 5) + SourceIndex(0)
4 >Emitted(18, 15) Source(40, 5) + SourceIndex(0)
5 >Emitted(18, 25) Source(40, 15) + SourceIndex(0)
6 >Emitted(18, 32) Source(39, 47) + SourceIndex(0)
7 >Emitted(18, 34) Source(36, 5) + SourceIndex(0)
8 >Emitted(18, 55) Source(39, 9) + SourceIndex(0)
9 >Emitted(18, 57) Source(39, 11) + SourceIndex(0)
10>Emitted(18, 64) Source(39, 18) + SourceIndex(0)
11>Emitted(18, 66) Source(39, 20) + SourceIndex(0)
12>Emitted(18, 72) Source(39, 26) + SourceIndex(0)
13>Emitted(18, 74) Source(39, 28) + SourceIndex(0)
14>Emitted(18, 83) Source(39, 37) + SourceIndex(0)
15>Emitted(18, 85) Source(39, 39) + SourceIndex(0)
16>Emitted(18, 91) Source(39, 45) + SourceIndex(0)
17>Emitted(18, 93) Source(39, 47) + SourceIndex(0)
18>Emitted(18, 98) Source(39, 47) + SourceIndex(0)
19>Emitted(18, 100) Source(37, 9) + SourceIndex(0)
20>Emitted(18, 115) Source(37, 38) + SourceIndex(0)
21>Emitted(18, 117) Source(37, 18) + SourceIndex(0)
22>Emitted(18, 125) Source(37, 26) + SourceIndex(0)
23>Emitted(18, 144) Source(37, 29) + SourceIndex(0)
24>Emitted(18, 153) Source(37, 38) + SourceIndex(0)
25>Emitted(18, 158) Source(37, 38) + SourceIndex(0)
26>Emitted(18, 160) Source(38, 9) + SourceIndex(0)
27>Emitted(18, 177) Source(38, 44) + SourceIndex(0)
28>Emitted(18, 179) Source(38, 20) + SourceIndex(0)
29>Emitted(18, 189) Source(38, 30) + SourceIndex(0)
30>Emitted(18, 208) Source(38, 33) + SourceIndex(0)
31>Emitted(18, 219) Source(38, 44) + SourceIndex(0)
32>Emitted(18, 224) Source(38, 44) + SourceIndex(0)
33>Emitted(18, 226) Source(40, 17) + SourceIndex(0)
34>Emitted(18, 227) Source(40, 18) + SourceIndex(0)
35>Emitted(18, 230) Source(40, 21) + SourceIndex(0)
36>Emitted(18, 231) Source(40, 22) + SourceIndex(0)
37>Emitted(18, 233) Source(40, 24) + SourceIndex(0)
38>Emitted(18, 234) Source(40, 25) + SourceIndex(0)
39>Emitted(18, 237) Source(40, 28) + SourceIndex(0)
40>Emitted(18, 238) Source(40, 29) + SourceIndex(0)
41>Emitted(18, 240) Source(40, 31) + SourceIndex(0)
42>Emitted(18, 241) Source(40, 32) + SourceIndex(0)
43>Emitted(18, 243) Source(40, 34) + SourceIndex(0)
44>Emitted(18, 245) Source(40, 36) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(19, 5) Source(41, 5) + SourceIndex(0)
2 >Emitted(19, 12) Source(41, 12) + SourceIndex(0)
3 >Emitted(19, 13) Source(41, 13) + SourceIndex(0)
4 >Emitted(19, 16) Source(41, 16) + SourceIndex(0)
5 >Emitted(19, 17) Source(41, 17) + SourceIndex(0)
6 >Emitted(19, 25) Source(41, 25) + SourceIndex(0)
7 >Emitted(19, 26) Source(41, 26) + SourceIndex(0)
8 >Emitted(19, 27) Source(41, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(20, 2) Source(42, 2) + SourceIndex(0)
---
>>>for (var _h = getMultiRobot().skills, _j = _h === void 0 ? { primary: "none", secondary: "none" } : _h, _k = _j.primary, primaryA = _k === void 0 ? "primary" : _k, _l = _j.secondary, secondaryA = _l === void 0 ? "secondary" : _l, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                       ^^
1->
  >
2 >for (let {
  >    
3 >     
4 >         skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = 
5 >              getMultiRobot
6 >                           ()
7 >                             
8 >                                    
9 >                                      skills: {
  >                                              primary: primaryA = "primary",
  >                                              secondary: secondaryA = "secondary"
  >                                          } = 
10>                                                           { 
11>                                                             primary
12>                                                                    : 
13>                                                                      "none"
14>                                                                            , 
15>                                                                              secondary
16>                                                                                       : 
17>                                                                                         "none"
18>                                                                                                }
19>                                                                                                 
20>                                                                                                      
21>                                                                                                        primary: primaryA = "primary"
22>                                                                                                                       
23>                                                                                                                         primaryA
24>                                                                                                                                  = 
25>                                                                                                                                                    "primary"
26>                                                                                                                                                             
27>                                                                                                                                                                  ,
  >                                                                                                                                                                          
28>                                                                                                                                                                    secondary: secondaryA = "secondary"
29>                                                                                                                                                                                     
30>                                                                                                                                                                                       secondaryA
31>                                                                                                                                                                                                  = 
32>                                                                                                                                                                                                                    "secondary"
33>                                                                                                                                                                                                                               
34>                                                                                                                                                                                                                                    
  >                                                                                                                                                                                                                                        } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                    } = getMultiRobot(), 
35>                                                                                                                                                                                                                                      i
36>                                                                                                                                                                                                                                        = 
37>                                                                                                                                                                                                                                          0
38>                                                                                                                                                                                                                                           ; 
39>                                                                                                                                                                                                                                             i
40>                                                                                                                                                                                                                                               < 
41>                                                                                                                                                                                                                                                 1
42>                                                                                                                                                                                                                                                  ; 
43>                                                                                                                                                                                                                                                    i
44>                                                                                                                                                                                                                                                     ++
45>                                                                                                                                                                                                                                                       ) 
1->Emitted(21, 1) Source(43, 1) + SourceIndex(0)
2 >Emitted(21, 6) Source(44, 5) + SourceIndex(0)
3 >Emitted(21, 10) Source(44, 5) + SourceIndex(0)
4 >Emitted(21, 15) Source(48, 5) + SourceIndex(0)
5 >Emitted(21, 28) Source(48, 18) + SourceIndex(0)
6 >Emitted(21, 30) Source(48, 20) + SourceIndex(0)
7 >Emitted(21, 37) Source(47, 47) + SourceIndex(0)
8 >Emitted(21, 39) Source(44, 5) + SourceIndex(0)
9 >Emitted(21, 60) Source(47, 9) + SourceIndex(0)
10>Emitted(21, 62) Source(47, 11) + SourceIndex(0)
11>Emitted(21, 69) Source(47, 18) + SourceIndex(0)
12>Emitted(21, 71) Source(47, 20) + SourceIndex(0)
13>Emitted(21, 77) Source(47, 26) + SourceIndex(0)
14>Emitted(21, 79) Source(47, 28) + SourceIndex(0)
15>Emitted(21, 88) Source(47, 37) + SourceIndex(0)
16>Emitted(21, 90) Source(47, 39) + SourceIndex(0)
17>Emitted(21, 96) Source(47, 45) + SourceIndex(0)
18>Emitted(21, 98) Source(47, 47) + SourceIndex(0)
19>Emitted(21, 103) Source(47, 47) + SourceIndex(0)
20>Emitted(21, 105) Source(45, 9) + SourceIndex(0)
21>Emitted(21, 120) Source(45, 38) + SourceIndex(0)
22>Emitted(21, 122) Source(45, 18) + SourceIndex(0)
23>Emitted(21, 130) Source(45, 26) + SourceIndex(0)
24>Emitted(21, 149) Source(45, 29) + SourceIndex(0)
25>Emitted(21, 158) Source(45, 38) + SourceIndex(0)
26>Emitted(21, 163) Source(45, 38) + SourceIndex(0)
27>Emitted(21, 165) Source(46, 9) + SourceIndex(0)
28>Emitted(21, 182) Source(46, 44) + SourceIndex(0)
29>Emitted(21, 184) Source(46, 20) + SourceIndex(0)
30>Emitted(21, 194) Source(46, 30) + SourceIndex(0)
31>Emitted(21, 213) Source(46, 33) + SourceIndex(0)
32>Emitted(21, 224) Source(46, 44) + SourceIndex(0)
33>Emitted(21, 229) Source(46, 44) + SourceIndex(0)
34>Emitted(21, 231) Source(48, 22) + SourceIndex(0)
35>Emitted(21, 232) Source(48, 23) + SourceIndex(0)
36>Emitted(21, 235) Source(48, 26) + SourceIndex(0)
37>Emitted(21, 236) Source(48, 27) + SourceIndex(0)
38>Emitted(21, 238) Source(48, 29) + SourceIndex(0)
39>Emitted(21, 239) Source(48, 30) + SourceIndex(0)
40>Emitted(21, 242) Source(48, 33) + SourceIndex(0)
41>Emitted(21, 243) Source(48, 34) + SourceIndex(0)
42>Emitted(21, 245) Source(48, 36) + SourceIndex(0)
43>Emitted(21, 246) Source(48, 37) + SourceIndex(0)
44>Emitted(21, 248) Source(48, 39) + SourceIndex(0)
45>Emitted(21, 250) Source(48, 41) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(22, 5) Source(49, 5) + SourceIndex(0)
2 >Emitted(22, 12) Source(49, 12) + SourceIndex(0)
3 >Emitted(22, 13) Source(49, 13) + SourceIndex(0)
4 >Emitted(22, 16) Source(49, 16) + SourceIndex(0)
5 >Emitted(22, 17) Source(49, 17) + SourceIndex(0)
6 >Emitted(22, 25) Source(49, 25) + SourceIndex(0)
7 >Emitted(22, 26) Source(49, 26) + SourceIndex(0)
8 >Emitted(22, 27) Source(49, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(23, 2) Source(50, 2) + SourceIndex(0)
---
>>>for (var _m = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }.skills, _o = _m === void 0 ? { primary: "none", secondary: "none" } : _m, _p = _o.primary, primaryA = _p === void 0 ? "primary" : _p, _q = _o.secondary, secondaryA = _q === void 0 ? "secondary" : _q, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                                                                                 ^^
1->
  >
2 >for (let {
  >    
3 >     
4 >         skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = <MultiRobot>
5 >              { 
6 >                name
7 >                    : 
8 >                      "trimmer"
9 >                               , 
10>                                 skills
11>                                       : 
12>                                         { 
13>                                           primary
14>                                                  : 
15>                                                    "trimming"
16>                                                              , 
17>                                                                secondary
18>                                                                         : 
19>                                                                           "edging"
20>                                                                                    }
21>                                                                                      }
22>                                                                                       
23>                                                                                              
24>                                                                                                skills: {
  >                                                                                                        primary: primaryA = "primary",
  >                                                                                                        secondary: secondaryA = "secondary"
  >                                                                                                    } = 
25>                                                                                                                     { 
26>                                                                                                                       primary
27>                                                                                                                              : 
28>                                                                                                                                "none"
29>                                                                                                                                      , 
30>                                                                                                                                        secondary
31>                                                                                                                                                 : 
32>                                                                                                                                                   "none"
33>                                                                                                                                                          }
34>                                                                                                                                                           
35>                                                                                                                                                                
36>                                                                                                                                                                  primary: primaryA = "primary"
37>                                                                                                                                                                                 
38>                                                                                                                                                                                   primaryA
39>                                                                                                                                                                                            = 
40>                                                                                                                                                                                                              "primary"
41>                                                                                                                                                                                                                       
42>                                                                                                                                                                                                                            ,
  >                                                                                                                                                                                                                                    
43>                                                                                                                                                                                                                              secondary: secondaryA = "secondary"
44>                                                                                                                                                                                                                                               
45>                                                                                                                                                                                                                                                 secondaryA
46>                                                                                                                                                                                                                                                            = 
47>                                                                                                                                                                                                                                                                              "secondary"
48>                                                                                                                                                                                                                                                                                         
49>                                                                                                                                                                                                                                                                                              
  >                                                                                                                                                                                                                                                                                                  } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                              } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >                                                                                                                                                                                                                                                                                                  
50>                                                                                                                                                                                                                                                                                                i
51>                                                                                                                                                                                                                                                                                                  = 
52>                                                                                                                                                                                                                                                                                                    0
53>                                                                                                                                                                                                                                                                                                     ; 
54>                                                                                                                                                                                                                                                                                                       i
55>                                                                                                                                                                                                                                                                                                         < 
56>                                                                                                                                                                                                                                                                                                           1
57>                                                                                                                                                                                                                                                                                                            ; 
58>                                                                                                                                                                                                                                                                                                              i
59>                                                                                                                                                                                                                                                                                                               ++
60>                                                                                                                                                                                                                                                                                                                 ) 
1->Emitted(24, 1) Source(51, 1) + SourceIndex(0)
2 >Emitted(24, 6) Source(52, 5) + SourceIndex(0)
3 >Emitted(24, 10) Source(52, 5) + SourceIndex(0)
4 >Emitted(24, 15) Source(56, 17) + SourceIndex(0)
5 >Emitted(24, 17) Source(56, 19) + SourceIndex(0)
6 >Emitted(24, 21) Source(56, 23) + SourceIndex(0)
7 >Emitted(24, 23) Source(56, 25) + SourceIndex(0)
8 >Emitted(24, 32) Source(56, 34) + SourceIndex(0)
9 >Emitted(24, 34) Source(56, 36) + SourceIndex(0)
10>Emitted(24, 40) Source(56, 42) + SourceIndex(0)
11>Emitted(24, 42) Source(56, 44) + SourceIndex(0)
12>Emitted(24, 44) Source(56, 46) + SourceIndex(0)
13>Emitted(24, 51) Source(56, 53) + SourceIndex(0)
14>Emitted(24, 53) Source(56, 55) + SourceIndex(0)
15>Emitted(24, 63) Source(56, 65) + SourceIndex(0)
16>Emitted(24, 65) Source(56, 67) + SourceIndex(0)
17>Emitted(24, 74) Source(56, 76) + SourceIndex(0)
18>Emitted(24, 76) Source(56, 78) + SourceIndex(0)
19>Emitted(24, 84) Source(56, 86) + SourceIndex(0)
20>Emitted(24, 86) Source(56, 88) + SourceIndex(0)
21>Emitted(24, 88) Source(56, 90) + SourceIndex(0)
22>Emitted(24, 95) Source(55, 47) + SourceIndex(0)
23>Emitted(24, 97) Source(52, 5) + SourceIndex(0)
24>Emitted(24, 118) Source(55, 9) + SourceIndex(0)
25>Emitted(24, 120) Source(55, 11) + SourceIndex(0)
26>Emitted(24, 127) Source(55, 18) + SourceIndex(0)
27>Emitted(24, 129) Source(55, 20) + SourceIndex(0)
28>Emitted(24, 135) Source(55, 26) + SourceIndex(0)
29>Emitted(24, 137) Source(55, 28) + SourceIndex(0)
30>Emitted(24, 146) Source(55, 37) + SourceIndex(0)
31>Emitted(24, 148) Source(55, 39) + SourceIndex(0)
32>Emitted(24, 154) Source(55, 45) + SourceIndex(0)
33>Emitted(24, 156) Source(55, 47) + SourceIndex(0)
34>Emitted(24, 161) Source(55, 47) + SourceIndex(0)
35>Emitted(24, 163) Source(53, 9) + SourceIndex(0)
36>Emitted(24, 178) Source(53, 38) + SourceIndex(0)
37>Emitted(24, 180) Source(53, 18) + SourceIndex(0)
38>Emitted(24, 188) Source(53, 26) + SourceIndex(0)
39>Emitted(24, 207) Source(53, 29) + SourceIndex(0)
40>Emitted(24, 216) Source(53, 38) + SourceIndex(0)
41>Emitted(24, 221) Source(53, 38) + SourceIndex(0)
42>Emitted(24, 223) Source(54, 9) + SourceIndex(0)
43>Emitted(24, 240) Source(54, 44) + SourceIndex(0)
44>Emitted(24, 242) Source(54, 20) + SourceIndex(0)
45>Emitted(24, 252) Source(54, 30) + SourceIndex(0)
46>Emitted(24, 271) Source(54, 33) + SourceIndex(0)
47>Emitted(24, 282) Source(54, 44) + SourceIndex(0)
48>Emitted(24, 287) Source(54, 44) + SourceIndex(0)
49>Emitted(24, 289) Source(57, 5) + SourceIndex(0)
50>Emitted(24, 290) Source(57, 6) + SourceIndex(0)
51>Emitted(24, 293) Source(57, 9) + SourceIndex(0)
52>Emitted(24, 294) Source(57, 10) + SourceIndex(0)
53>Emitted(24, 296) Source(57, 12) + SourceIndex(0)
54>Emitted(24, 297) Source(57, 13) + SourceIndex(0)
55>Emitted(24, 300) Source(57, 16) + SourceIndex(0)
56>Emitted(24, 301) Source(57, 17) + SourceIndex(0)
57>Emitted(24, 303) Source(57, 19) + SourceIndex(0)
58>Emitted(24, 304) Source(57, 20) + SourceIndex(0)
59>Emitted(24, 306) Source(57, 22) + SourceIndex(0)
60>Emitted(24, 308) Source(57, 24) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(25, 5) Source(58, 5) + SourceIndex(0)
2 >Emitted(25, 12) Source(58, 12) + SourceIndex(0)
3 >Emitted(25, 13) Source(58, 13) + SourceIndex(0)
4 >Emitted(25, 16) Source(58, 16) + SourceIndex(0)
5 >Emitted(25, 17) Source(58, 17) + SourceIndex(0)
6 >Emitted(25, 25) Source(58, 25) + SourceIndex(0)
7 >Emitted(25, 26) Source(58, 26) + SourceIndex(0)
8 >Emitted(25, 27) Source(58, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(26, 2) Source(59, 2) + SourceIndex(0)
---
>>>for (var _r = robot.name, nameA = _r === void 0 ? "noName" : _r, _s = robot.skill, skillA = _s === void 0 ? "skill" : _s, i = 0; i < 1; i++) {
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>                                                                                                                                           ^^
1->
  >
  >
2 >for (let {
3 >     
4 >         name: nameA = "noName", skill: skillA = "skill" } = 
5 >              robot
6 >                   
7 >                        
8 >                          nameA
9 >                                = 
10>                                                  "noName"
11>                                                          
12>                                                               , 
13>                                                                 skill: skillA = "skill" } = 
14>                                                                      robot
15>                                                                           
16>                                                                                 
17>                                                                                   skillA
18>                                                                                          = 
19>                                                                                                            "skill"
20>                                                                                                                   
21>                                                                                                                         } = robot, 
22>                                                                                                                          i
23>                                                                                                                            = 
24>                                                                                                                              0
25>                                                                                                                               ; 
26>                                                                                                                                 i
27>                                                                                                                                   < 
28>                                                                                                                                     1
29>                                                                                                                                      ; 
30>                                                                                                                                        i
31>                                                                                                                                         ++
32>                                                                                                                                           ) 
1->Emitted(27, 1) Source(61, 1) + SourceIndex(0)
2 >Emitted(27, 6) Source(61, 11) + SourceIndex(0)
3 >Emitted(27, 10) Source(61, 11) + SourceIndex(0)
4 >Emitted(27, 15) Source(61, 63) + SourceIndex(0)
5 >Emitted(27, 20) Source(61, 68) + SourceIndex(0)
6 >Emitted(27, 25) Source(61, 33) + SourceIndex(0)
7 >Emitted(27, 27) Source(61, 17) + SourceIndex(0)
8 >Emitted(27, 32) Source(61, 22) + SourceIndex(0)
9 >Emitted(27, 51) Source(61, 25) + SourceIndex(0)
10>Emitted(27, 59) Source(61, 33) + SourceIndex(0)
11>Emitted(27, 64) Source(61, 33) + SourceIndex(0)
12>Emitted(27, 66) Source(61, 35) + SourceIndex(0)
13>Emitted(27, 71) Source(61, 63) + SourceIndex(0)
14>Emitted(27, 76) Source(61, 68) + SourceIndex(0)
15>Emitted(27, 82) Source(61, 58) + SourceIndex(0)
16>Emitted(27, 84) Source(61, 42) + SourceIndex(0)
17>Emitted(27, 90) Source(61, 48) + SourceIndex(0)
18>Emitted(27, 109) Source(61, 51) + SourceIndex(0)
19>Emitted(27, 116) Source(61, 58) + SourceIndex(0)
20>Emitted(27, 121) Source(61, 58) + SourceIndex(0)
21>Emitted(27, 123) Source(61, 70) + SourceIndex(0)
22>Emitted(27, 124) Source(61, 71) + SourceIndex(0)
23>Emitted(27, 127) Source(61, 74) + SourceIndex(0)
24>Emitted(27, 128) Source(61, 75) + SourceIndex(0)
25>Emitted(27, 130) Source(61, 77) + SourceIndex(0)
26>Emitted(27, 131) Source(61, 78) + SourceIndex(0)
27>Emitted(27, 134) Source(61, 81) + SourceIndex(0)
28>Emitted(27, 135) Source(61, 82) + SourceIndex(0)
29>Emitted(27, 137) Source(61, 84) + SourceIndex(0)
30>Emitted(27, 138) Source(61, 85) + SourceIndex(0)
31>Emitted(27, 140) Source(61, 87) + SourceIndex(0)
32>Emitted(27, 142) Source(61, 89) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(28, 5) Source(62, 5) + SourceIndex(0)
2 >Emitted(28, 12) Source(62, 12) + SourceIndex(0)
3 >Emitted(28, 13) Source(62, 13) + SourceIndex(0)
4 >Emitted(28, 16) Source(62, 16) + SourceIndex(0)
5 >Emitted(28, 17) Source(62, 17) + SourceIndex(0)
6 >Emitted(28, 22) Source(62, 22) + SourceIndex(0)
7 >Emitted(28, 23) Source(62, 23) + SourceIndex(0)
8 >Emitted(28, 24) Source(62, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(29, 2) Source(63, 2) + SourceIndex(0)
---
>>>for (var _t = getRobot(), _u = _t.name, nameA = _u === void 0 ? "noName" : _u, _v = _t.skill, skillA = _v === void 0 ? "skill" : _v, i = 0; i < 1; i++) {
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>                                                                                                                                                      ^^
1->
  >
2 >for (let 
3 >     
4 >         {name: nameA = "noName", skill: skillA = "skill" } = 
5 >              getRobot
6 >                      ()
7 >                        
8 >                          name: nameA = "noName"
9 >                                      
10>                                        nameA
11>                                              = 
12>                                                                "noName"
13>                                                                        
14>                                                                             , 
15>                                                                               skill: skillA = "skill"
16>                                                                                            
17>                                                                                              skillA
18>                                                                                                     = 
19>                                                                                                                       "skill"
20>                                                                                                                              
21>                                                                                                                                    } = getRobot(), 
22>                                                                                                                                     i
23>                                                                                                                                       = 
24>                                                                                                                                         0
25>                                                                                                                                          ; 
26>                                                                                                                                            i
27>                                                                                                                                              < 
28>                                                                                                                                                1
29>                                                                                                                                                 ; 
30>                                                                                                                                                   i
31>                                                                                                                                                    ++
32>                                                                                                                                                      ) 
1->Emitted(30, 1) Source(64, 1) + SourceIndex(0)
2 >Emitted(30, 6) Source(64, 10) + SourceIndex(0)
3 >Emitted(30, 10) Source(64, 10) + SourceIndex(0)
4 >Emitted(30, 15) Source(64, 63) + SourceIndex(0)
5 >Emitted(30, 23) Source(64, 71) + SourceIndex(0)
6 >Emitted(30, 25) Source(64, 73) + SourceIndex(0)
7 >Emitted(30, 27) Source(64, 11) + SourceIndex(0)
8 >Emitted(30, 39) Source(64, 33) + SourceIndex(0)
9 >Emitted(30, 41) Source(64, 17) + SourceIndex(0)
10>Emitted(30, 46) Source(64, 22) + SourceIndex(0)
11>Emitted(30, 65) Source(64, 25) + SourceIndex(0)
12>Emitted(30, 73) Source(64, 33) + SourceIndex(0)
13>Emitted(30, 78) Source(64, 33) + SourceIndex(0)
14>Emitted(30, 80) Source(64, 35) + SourceIndex(0)
15>Emitted(30, 93) Source(64, 58) + SourceIndex(0)
16>Emitted(30, 95) Source(64, 42) + SourceIndex(0)
17>Emitted(30, 101) Source(64, 48) + SourceIndex(0)
18>Emitted(30, 120) Source(64, 51) + SourceIndex(0)
19>Emitted(30, 127) Source(64, 58) + SourceIndex(0)
20>Emitted(30, 132) Source(64, 58) + SourceIndex(0)
21>Emitted(30, 134) Source(64, 75) + SourceIndex(0)
22>Emitted(30, 135) Source(64, 76) + SourceIndex(0)
23>Emitted(30, 138) Source(64, 79) + SourceIndex(0)
24>Emitted(30, 139) Source(64, 80) + SourceIndex(0)
25>Emitted(30, 141) Source(64, 82) + SourceIndex(0)
26>Emitted(30, 142) Source(64, 83) + SourceIndex(0)
27>Emitted(30, 145) Source(64, 86) + SourceIndex(0)
28>Emitted(30, 146) Source(64, 87) + SourceIndex(0)
29>Emitted(30, 148) Source(64, 89) + SourceIndex(0)
30>Emitted(30, 149) Source(64, 90) + SourceIndex(0)
31>Emitted(30, 151) Source(64, 92) + SourceIndex(0)
32>Emitted(30, 153) Source(64, 94) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(31, 5) Source(65, 5) + SourceIndex(0)
2 >Emitted(31, 12) Source(65, 12) + SourceIndex(0)
3 >Emitted(31, 13) Source(65, 13) + SourceIndex(0)
4 >Emitted(31, 16) Source(65, 16) + SourceIndex(0)
5 >Emitted(31, 17) Source(65, 17) + SourceIndex(0)
6 >Emitted(31, 22) Source(65, 22) + SourceIndex(0)
7 >Emitted(31, 23) Source(65, 23) + SourceIndex(0)
8 >Emitted(31, 24) Source(65, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(32, 2) Source(66, 2) + SourceIndex(0)
---
>>>for (var _w = { name: "trimmer", skill: "trimming" }, _x = _w.name, nameA = _x === void 0 ? "noName" : _x, _y = _w.skill, skillA = _y === void 0 ? "skill" : _y, i = 0; i < 1; i++) {
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>                                                                                                                                                                                  ^^
1->
  >
2 >for (let 
3 >     
4 >         {name: nameA = "noName", skill: skillA = "skill" } = <Robot>
5 >              { 
6 >                name
7 >                    : 
8 >                      "trimmer"
9 >                               , 
10>                                 skill
11>                                      : 
12>                                        "trimming"
13>                                                   }
14>                                                    
15>                                                      name: nameA = "noName"
16>                                                                  
17>                                                                    nameA
18>                                                                          = 
19>                                                                                            "noName"
20>                                                                                                    
21>                                                                                                         , 
22>                                                                                                           skill: skillA = "skill"
23>                                                                                                                        
24>                                                                                                                          skillA
25>                                                                                                                                 = 
26>                                                                                                                                                   "skill"
27>                                                                                                                                                          
28>                                                                                                                                                                } = <Robot>{ name: "trimmer", skill: "trimming" }, 
29>                                                                                                                                                                 i
30>                                                                                                                                                                   = 
31>                                                                                                                                                                     0
32>                                                                                                                                                                      ; 
33>                                                                                                                                                                        i
34>                                                                                                                                                                          < 
35>                                                                                                                                                                            1
36>                                                                                                                                                                             ; 
37>                                                                                                                                                                               i
38>                                                                                                                                                                                ++
39>                                                                                                                                                                                  ) 
1->Emitted(33, 1) Source(67, 1) + SourceIndex(0)
2 >Emitted(33, 6) Source(67, 10) + SourceIndex(0)
3 >Emitted(33, 10) Source(67, 10) + SourceIndex(0)
4 >Emitted(33, 15) Source(67, 70) + SourceIndex(0)
5 >Emitted(33, 17) Source(67, 72) + SourceIndex(0)
6 >Emitted(33, 21) Source(67, 76) + SourceIndex(0)
7 >Emitted(33, 23) Source(67, 78) + SourceIndex(0)
8 >Emitted(33, 32) Source(67, 87) + SourceIndex(0)
9 >Emitted(33, 34) Source(67, 89) + SourceIndex(0)
10>Emitted(33, 39) Source(67, 94) + SourceIndex(0)
11>Emitted(33, 41) Source(67, 96) + SourceIndex(0)
12>Emitted(33, 51) Source(67, 106) + SourceIndex(0)
13>Emitted(33, 53) Source(67, 108) + SourceIndex(0)
14>Emitted(33, 55) Source(67, 11) + SourceIndex(0)
15>Emitted(33, 67) Source(67, 33) + SourceIndex(0)
16>Emitted(33, 69) Source(67, 17) + SourceIndex(0)
17>Emitted(33, 74) Source(67, 22) + SourceIndex(0)
18>Emitted(33, 93) Source(67, 25) + SourceIndex(0)
19>Emitted(33, 101) Source(67, 33) + SourceIndex(0)
20>Emitted(33, 106) Source(67, 33) + SourceIndex(0)
21>Emitted(33, 108) Source(67, 35) + SourceIndex(0)
22>Emitted(33, 121) Source(67, 58) + SourceIndex(0)
23>Emitted(33, 123) Source(67, 42) + SourceIndex(0)
24>Emitted(33, 129) Source(67, 48) + SourceIndex(0)
25>Emitted(33, 148) Source(67, 51) + SourceIndex(0)
26>Emitted(33, 155) Source(67, 58) + SourceIndex(0)
27>Emitted(33, 160) Source(67, 58) + SourceIndex(0)
28>Emitted(33, 162) Source(67, 110) + SourceIndex(0)
29>Emitted(33, 163) Source(67, 111) + SourceIndex(0)
30>Emitted(33, 166) Source(67, 114) + SourceIndex(0)
31>Emitted(33, 167) Source(67, 115) + SourceIndex(0)
32>Emitted(33, 169) Source(67, 117) + SourceIndex(0)
33>Emitted(33, 170) Source(67, 118) + SourceIndex(0)
34>Emitted(33, 173) Source(67, 121) + SourceIndex(0)
35>Emitted(33, 174) Source(67, 122) + SourceIndex(0)
36>Emitted(33, 176) Source(67, 124) + SourceIndex(0)
37>Emitted(33, 177) Source(67, 125) + SourceIndex(0)
38>Emitted(33, 179) Source(67, 127) + SourceIndex(0)
39>Emitted(33, 181) Source(67, 129) + SourceIndex(0)
---
>>>    console.log(nameA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^
7 >                     ^
8 >                      ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                nameA
7 >                     )
8 >                      ;
1 >Emitted(34, 5) Source(68, 5) + SourceIndex(0)
2 >Emitted(34, 12) Source(68, 12) + SourceIndex(0)
3 >Emitted(34, 13) Source(68, 13) + SourceIndex(0)
4 >Emitted(34, 16) Source(68, 16) + SourceIndex(0)
5 >Emitted(34, 17) Source(68, 17) + SourceIndex(0)
6 >Emitted(34, 22) Source(68, 22) + SourceIndex(0)
7 >Emitted(34, 23) Source(68, 23) + SourceIndex(0)
8 >Emitted(34, 24) Source(68, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(35, 2) Source(69, 2) + SourceIndex(0)
---
>>>for (var _z = multiRobot.name, nameA = _z === void 0 ? "noName" : _z, _0 = multiRobot.skills, _1 = _0 === void 0 ? { primary: "none", secondary: "none" } : _0, _2 = _1.primary, primaryA = _2 === void 0 ? "primary" : _2, _3 = _1.secondary, secondaryA = _3 === void 0 ? "secondary" : _3, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                                                                               ^^
1->
  >
2 >for (let {
  >    
3 >     
4 >         name: nameA = "noName",
  >             skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = 
5 >              multiRobot
6 >                        
7 >                             
8 >                               nameA
9 >                                     = 
10>                                                       "noName"
11>                                                               
12>                                                                    ,
  >                                                                        
13>                                                                      skills: {
  >                                                                              primary: primaryA = "primary",
  >                                                                              secondary: secondaryA = "secondary"
  >                                                                          } = { primary: "none", secondary: "none" }
  >                                                                      } = 
14>                                                                           multiRobot
15>                                                                                     
16>                                                                                            
17>                                                                                              skills: {
  >                                                                                                      primary: primaryA = "primary",
  >                                                                                                      secondary: secondaryA = "secondary"
  >                                                                                                  } = 
18>                                                                                                                   { 
19>                                                                                                                     primary
20>                                                                                                                            : 
21>                                                                                                                              "none"
22>                                                                                                                                    , 
23>                                                                                                                                      secondary
24>                                                                                                                                               : 
25>                                                                                                                                                 "none"
26>                                                                                                                                                        }
27>                                                                                                                                                         
28>                                                                                                                                                              
29>                                                                                                                                                                primary: primaryA = "primary"
30>                                                                                                                                                                               
31>                                                                                                                                                                                 primaryA
32>                                                                                                                                                                                          = 
33>                                                                                                                                                                                                            "primary"
34>                                                                                                                                                                                                                     
35>                                                                                                                                                                                                                          ,
  >                                                                                                                                                                                                                                  
36>                                                                                                                                                                                                                            secondary: secondaryA = "secondary"
37>                                                                                                                                                                                                                                             
38>                                                                                                                                                                                                                                               secondaryA
39>                                                                                                                                                                                                                                                          = 
40>                                                                                                                                                                                                                                                                            "secondary"
41>                                                                                                                                                                                                                                                                                       
42>                                                                                                                                                                                                                                                                                            
  >                                                                                                                                                                                                                                                                                                } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                            } = multiRobot, 
43>                                                                                                                                                                                                                                                                                              i
44>                                                                                                                                                                                                                                                                                                = 
45>                                                                                                                                                                                                                                                                                                  0
46>                                                                                                                                                                                                                                                                                                   ; 
47>                                                                                                                                                                                                                                                                                                     i
48>                                                                                                                                                                                                                                                                                                       < 
49>                                                                                                                                                                                                                                                                                                         1
50>                                                                                                                                                                                                                                                                                                          ; 
51>                                                                                                                                                                                                                                                                                                            i
52>                                                                                                                                                                                                                                                                                                             ++
53>                                                                                                                                                                                                                                                                                                               ) 
1->Emitted(36, 1) Source(70, 1) + SourceIndex(0)
2 >Emitted(36, 6) Source(71, 5) + SourceIndex(0)
3 >Emitted(36, 10) Source(71, 5) + SourceIndex(0)
4 >Emitted(36, 15) Source(76, 5) + SourceIndex(0)
5 >Emitted(36, 25) Source(76, 15) + SourceIndex(0)
6 >Emitted(36, 30) Source(71, 27) + SourceIndex(0)
7 >Emitted(36, 32) Source(71, 11) + SourceIndex(0)
8 >Emitted(36, 37) Source(71, 16) + SourceIndex(0)
9 >Emitted(36, 56) Source(71, 19) + SourceIndex(0)
10>Emitted(36, 64) Source(71, 27) + SourceIndex(0)
11>Emitted(36, 69) Source(71, 27) + SourceIndex(0)
12>Emitted(36, 71) Source(72, 5) + SourceIndex(0)
13>Emitted(36, 76) Source(76, 5) + SourceIndex(0)
14>Emitted(36, 86) Source(76, 15) + SourceIndex(0)
15>Emitted(36, 93) Source(75, 47) + SourceIndex(0)
16>Emitted(36, 95) Source(72, 5) + SourceIndex(0)
17>Emitted(36, 116) Source(75, 9) + SourceIndex(0)
18>Emitted(36, 118) Source(75, 11) + SourceIndex(0)
19>Emitted(36, 125) Source(75, 18) + SourceIndex(0)
20>Emitted(36, 127) Source(75, 20) + SourceIndex(0)
21>Emitted(36, 133) Source(75, 26) + SourceIndex(0)
22>Emitted(36, 135) Source(75, 28) + SourceIndex(0)
23>Emitted(36, 144) Source(75, 37) + SourceIndex(0)
24>Emitted(36, 146) Source(75, 39) + SourceIndex(0)
25>Emitted(36, 152) Source(75, 45) + SourceIndex(0)
26>Emitted(36, 154) Source(75, 47) + SourceIndex(0)
27>Emitted(36, 159) Source(75, 47) + SourceIndex(0)
28>Emitted(36, 161) Source(73, 9) + SourceIndex(0)
29>Emitted(36, 176) Source(73, 38) + SourceIndex(0)
30>Emitted(36, 178) Source(73, 18) + SourceIndex(0)
31>Emitted(36, 186) Source(73, 26) + SourceIndex(0)
32>Emitted(36, 205) Source(73, 29) + SourceIndex(0)
33>Emitted(36, 214) Source(73, 38) + SourceIndex(0)
34>Emitted(36, 219) Source(73, 38) + SourceIndex(0)
35>Emitted(36, 221) Source(74, 9) + SourceIndex(0)
36>Emitted(36, 238) Source(74, 44) + SourceIndex(0)
37>Emitted(36, 240) Source(74, 20) + SourceIndex(0)
38>Emitted(36, 250) Source(74, 30) + SourceIndex(0)
39>Emitted(36, 269) Source(74, 33) + SourceIndex(0)
40>Emitted(36, 280) Source(74, 44) + SourceIndex(0)
41>Emitted(36, 285) Source(74, 44) + SourceIndex(0)
42>Emitted(36, 287) Source(76, 17) + SourceIndex(0)
43>Emitted(36, 288) Source(76, 18) + SourceIndex(0)
44>Emitted(36, 291) Source(76, 21) + SourceIndex(0)
45>Emitted(36, 292) Source(76, 22) + SourceIndex(0)
46>Emitted(36, 294) Source(76, 24) + SourceIndex(0)
47>Emitted(36, 295) Source(76, 25) + SourceIndex(0)
48>Emitted(36, 298) Source(76, 28) + SourceIndex(0)
49>Emitted(36, 299) Source(76, 29) + SourceIndex(0)
50>Emitted(36, 301) Source(76, 31) + SourceIndex(0)
51>Emitted(36, 302) Source(76, 32) + SourceIndex(0)
52>Emitted(36, 304) Source(76, 34) + SourceIndex(0)
53>Emitted(36, 306) Source(76, 36) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(37, 5) Source(77, 5) + SourceIndex(0)
2 >Emitted(37, 12) Source(77, 12) + SourceIndex(0)
3 >Emitted(37, 13) Source(77, 13) + SourceIndex(0)
4 >Emitted(37, 16) Source(77, 16) + SourceIndex(0)
5 >Emitted(37, 17) Source(77, 17) + SourceIndex(0)
6 >Emitted(37, 25) Source(77, 25) + SourceIndex(0)
7 >Emitted(37, 26) Source(77, 26) + SourceIndex(0)
8 >Emitted(37, 27) Source(77, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(38, 2) Source(78, 2) + SourceIndex(0)
---
>>>for (var _4 = getMultiRobot(), _5 = _4.name, nameA = _5 === void 0 ? "noName" : _5, _6 = _4.skills, _7 = _6 === void 0 ? { primary: "none", secondary: "none" } : _6, _8 = _7.primary, primaryA = _8 === void 0 ? "primary" : _8, _9 = _7.secondary, secondaryA = _9 === void 0 ? "secondary" : _9, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                                                                                     ^^
1->
  >
2 >for (let 
3 >     
4 >         {
  >             name: nameA = "noName",
  >             skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = 
5 >              getMultiRobot
6 >                           ()
7 >                             
8 >                               name: nameA = "noName"
9 >                                           
10>                                             nameA
11>                                                   = 
12>                                                                     "noName"
13>                                                                             
14>                                                                                  ,
  >                                                                                      
15>                                                                                    skills: {
  >                                                                                            primary: primaryA = "primary",
  >                                                                                            secondary: secondaryA = "secondary"
  >                                                                                        } = { primary: "none", secondary: "none" }
16>                                                                                                  
17>                                                                                                    skills: {
  >                                                                                                            primary: primaryA = "primary",
  >                                                                                                            secondary: secondaryA = "secondary"
  >                                                                                                        } = 
18>                                                                                                                         { 
19>                                                                                                                           primary
20>                                                                                                                                  : 
21>                                                                                                                                    "none"
22>                                                                                                                                          , 
23>                                                                                                                                            secondary
24>                                                                                                                                                     : 
25>                                                                                                                                                       "none"
26>                                                                                                                                                              }
27>                                                                                                                                                               
28>                                                                                                                                                                    
29>                                                                                                                                                                      primary: primaryA = "primary"
30>                                                                                                                                                                                     
31>                                                                                                                                                                                       primaryA
32>                                                                                                                                                                                                = 
33>                                                                                                                                                                                                                  "primary"
34>                                                                                                                                                                                                                           
35>                                                                                                                                                                                                                                ,
  >                                                                                                                                                                                                                                        
36>                                                                                                                                                                                                                                  secondary: secondaryA = "secondary"
37>                                                                                                                                                                                                                                                   
38>                                                                                                                                                                                                                                                     secondaryA
39>                                                                                                                                                                                                                                                                = 
40>                                                                                                                                                                                                                                                                                  "secondary"
41>                                                                                                                                                                                                                                                                                             
42>                                                                                                                                                                                                                                                                                                  
  >                                                                                                                                                                                                                                                                                                      } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                  } = getMultiRobot(), 
43>                                                                                                                                                                                                                                                                                                    i
44>                                                                                                                                                                                                                                                                                                      = 
45>                                                                                                                                                                                                                                                                                                        0
46>                                                                                                                                                                                                                                                                                                         ; 
47>                                                                                                                                                                                                                                                                                                           i
48>                                                                                                                                                                                                                                                                                                             < 
49>                                                                                                                                                                                                                                                                                                               1
50>                                                                                                                                                                                                                                                                                                                ; 
51>                                                                                                                                                                                                                                                                                                                  i
52>                                                                                                                                                                                                                                                                                                                   ++
53>                                                                                                                                                                                                                                                                                                                     ) 
1->Emitted(39, 1) Source(79, 1) + SourceIndex(0)
2 >Emitted(39, 6) Source(79, 10) + SourceIndex(0)
3 >Emitted(39, 10) Source(79, 10) + SourceIndex(0)
4 >Emitted(39, 15) Source(85, 5) + SourceIndex(0)
5 >Emitted(39, 28) Source(85, 18) + SourceIndex(0)
6 >Emitted(39, 30) Source(85, 20) + SourceIndex(0)
7 >Emitted(39, 32) Source(80, 5) + SourceIndex(0)
8 >Emitted(39, 44) Source(80, 27) + SourceIndex(0)
9 >Emitted(39, 46) Source(80, 11) + SourceIndex(0)
10>Emitted(39, 51) Source(80, 16) + SourceIndex(0)
11>Emitted(39, 70) Source(80, 19) + SourceIndex(0)
12>Emitted(39, 78) Source(80, 27) + SourceIndex(0)
13>Emitted(39, 83) Source(80, 27) + SourceIndex(0)
14>Emitted(39, 85) Source(81, 5) + SourceIndex(0)
15>Emitted(39, 99) Source(84, 47) + SourceIndex(0)
16>Emitted(39, 101) Source(81, 5) + SourceIndex(0)
17>Emitted(39, 122) Source(84, 9) + SourceIndex(0)
18>Emitted(39, 124) Source(84, 11) + SourceIndex(0)
19>Emitted(39, 131) Source(84, 18) + SourceIndex(0)
20>Emitted(39, 133) Source(84, 20) + SourceIndex(0)
21>Emitted(39, 139) Source(84, 26) + SourceIndex(0)
22>Emitted(39, 141) Source(84, 28) + SourceIndex(0)
23>Emitted(39, 150) Source(84, 37) + SourceIndex(0)
24>Emitted(39, 152) Source(84, 39) + SourceIndex(0)
25>Emitted(39, 158) Source(84, 45) + SourceIndex(0)
26>Emitted(39, 160) Source(84, 47) + SourceIndex(0)
27>Emitted(39, 165) Source(84, 47) + SourceIndex(0)
28>Emitted(39, 167) Source(82, 9) + SourceIndex(0)
29>Emitted(39, 182) Source(82, 38) + SourceIndex(0)
30>Emitted(39, 184) Source(82, 18) + SourceIndex(0)
31>Emitted(39, 192) Source(82, 26) + SourceIndex(0)
32>Emitted(39, 211) Source(82, 29) + SourceIndex(0)
33>Emitted(39, 220) Source(82, 38) + SourceIndex(0)
34>Emitted(39, 225) Source(82, 38) + SourceIndex(0)
35>Emitted(39, 227) Source(83, 9) + SourceIndex(0)
36>Emitted(39, 244) Source(83, 44) + SourceIndex(0)
37>Emitted(39, 246) Source(83, 20) + SourceIndex(0)
38>Emitted(39, 256) Source(83, 30) + SourceIndex(0)
39>Emitted(39, 275) Source(83, 33) + SourceIndex(0)
40>Emitted(39, 286) Source(83, 44) + SourceIndex(0)
41>Emitted(39, 291) Source(83, 44) + SourceIndex(0)
42>Emitted(39, 293) Source(85, 22) + SourceIndex(0)
43>Emitted(39, 294) Source(85, 23) + SourceIndex(0)
44>Emitted(39, 297) Source(85, 26) + SourceIndex(0)
45>Emitted(39, 298) Source(85, 27) + SourceIndex(0)
46>Emitted(39, 300) Source(85, 29) + SourceIndex(0)
47>Emitted(39, 301) Source(85, 30) + SourceIndex(0)
48>Emitted(39, 304) Source(85, 33) + SourceIndex(0)
49>Emitted(39, 305) Source(85, 34) + SourceIndex(0)
50>Emitted(39, 307) Source(85, 36) + SourceIndex(0)
51>Emitted(39, 308) Source(85, 37) + SourceIndex(0)
52>Emitted(39, 310) Source(85, 39) + SourceIndex(0)
53>Emitted(39, 312) Source(85, 41) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(40, 5) Source(86, 5) + SourceIndex(0)
2 >Emitted(40, 12) Source(86, 12) + SourceIndex(0)
3 >Emitted(40, 13) Source(86, 13) + SourceIndex(0)
4 >Emitted(40, 16) Source(86, 16) + SourceIndex(0)
5 >Emitted(40, 17) Source(86, 17) + SourceIndex(0)
6 >Emitted(40, 25) Source(86, 25) + SourceIndex(0)
7 >Emitted(40, 26) Source(86, 26) + SourceIndex(0)
8 >Emitted(40, 27) Source(86, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(41, 2) Source(87, 2) + SourceIndex(0)
---
>>>for (var _10 = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, _11 = _10.name, nameA = _11 === void 0 ? "noName" : _11, _12 = _10.skills, _13 = _12 === void 0 ? { primary: "none", secondary: "none" } : _12, _14 = _13.primary, primaryA = _14 === void 0 ? "primary" : _14, _15 = _13.secondary, secondaryA = _15 === void 0 ? "secondary" : _15, i = 0; i < 1; i++) {
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>                                                                                                                                                                                                                                                                                                                                                                                                 ^^
1->
  >
2 >for (let 
3 >     
4 >         {
  >             name: nameA = "noName",
  >             skills: {
  >                 primary: primaryA = "primary",
  >                 secondary: secondaryA = "secondary"
  >             } = { primary: "none", secondary: "none" }
  >         } = <MultiRobot>
5 >               { 
6 >                 name
7 >                     : 
8 >                       "trimmer"
9 >                                , 
10>                                  skills
11>                                        : 
12>                                          { 
13>                                            primary
14>                                                   : 
15>                                                     "trimming"
16>                                                               , 
17>                                                                 secondary
18>                                                                          : 
19>                                                                            "edging"
20>                                                                                     }
21>                                                                                       }
22>                                                                                        
23>                                                                                          name: nameA = "noName"
24>                                                                                                        
25>                                                                                                          nameA
26>                                                                                                                = 
27>                                                                                                                                   "noName"
28>                                                                                                                                           
29>                                                                                                                                                 ,
  >                                                                                                                                                     
30>                                                                                                                                                   skills: {
  >                                                                                                                                                           primary: primaryA = "primary",
  >                                                                                                                                                           secondary: secondaryA = "secondary"
  >                                                                                                                                                       } = { primary: "none", secondary: "none" }
31>                                                                                                                                                                   
32>                                                                                                                                                                     skills: {
  >                                                                                                                                                                             primary: primaryA = "primary",
  >                                                                                                                                                                             secondary: secondaryA = "secondary"
  >                                                                                                                                                                         } = 
33>                                                                                                                                                                                            { 
34>                                                                                                                                                                                              primary
35>                                                                                                                                                                                                     : 
36>                                                                                                                                                                                                       "none"
37>                                                                                                                                                                                                             , 
38>                                                                                                                                                                                                               secondary
39>                                                                                                                                                                                                                        : 
40>                                                                                                                                                                                                                          "none"
41>                                                                                                                                                                                                                                 }
42>                                                                                                                                                                                                                                  
43>                                                                                                                                                                                                                                        
44>                                                                                                                                                                                                                                          primary: primaryA = "primary"
45>                                                                                                                                                                                                                                                           
46>                                                                                                                                                                                                                                                             primaryA
47>                                                                                                                                                                                                                                                                      = 
48>                                                                                                                                                                                                                                                                                         "primary"
49>                                                                                                                                                                                                                                                                                                  
50>                                                                                                                                                                                                                                                                                                        ,
  >                                                                                                                                                                                                                                                                                                                
51>                                                                                                                                                                                                                                                                                                          secondary: secondaryA = "secondary"
52>                                                                                                                                                                                                                                                                                                                             
53>                                                                                                                                                                                                                                                                                                                               secondaryA
54>                                                                                                                                                                                                                                                                                                                                          = 
55>                                                                                                                                                                                                                                                                                                                                                             "secondary"
56>                                                                                                                                                                                                                                                                                                                                                                        
57>                                                                                                                                                                                                                                                                                                                                                                              
  >                                                                                                                                                                                                                                                                                                                                                                                  } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                                                                                              } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >                                                                                                                                                                                                                                                                                                                                                                                  
58>                                                                                                                                                                                                                                                                                                                                                                                i
59>                                                                                                                                                                                                                                                                                                                                                                                  = 
60>                                                                                                                                                                                                                                                                                                                                                                                    0
61>                                                                                                                                                                                                                                                                                                                                                                                     ; 
62>                                                                                                                                                                                                                                                                                                                                                                                       i
63>                                                                                                                                                                                                                                                                                                                                                                                         < 
64>                                                                                                                                                                                                                                                                                                                                                                                           1
65>                                                                                                                                                                                                                                                                                                                                                                                            ; 
66>                                                                                                                                                                                                                                                                                                                                                                                              i
67>                                                                                                                                                                                                                                                                                                                                                                                               ++
68>                                                                                                                                                                                                                                                                                                                                                                                                 ) 
1->Emitted(42, 1) Source(88, 1) + SourceIndex(0)
2 >Emitted(42, 6) Source(88, 10) + SourceIndex(0)
3 >Emitted(42, 10) Source(88, 10) + SourceIndex(0)
4 >Emitted(42, 16) Source(94, 17) + SourceIndex(0)
5 >Emitted(42, 18) Source(94, 19) + SourceIndex(0)
6 >Emitted(42, 22) Source(94, 23) + SourceIndex(0)
7 >Emitted(42, 24) Source(94, 25) + SourceIndex(0)
8 >Emitted(42, 33) Source(94, 34) + SourceIndex(0)
9 >Emitted(42, 35) Source(94, 36) + SourceIndex(0)
10>Emitted(42, 41) Source(94, 42) + SourceIndex(0)
11>Emitted(42, 43) Source(94, 44) + SourceIndex(0)
12>Emitted(42, 45) Source(94, 46) + SourceIndex(0)
13>Emitted(42, 52) Source(94, 53) + SourceIndex(0)
14>Emitted(42, 54) Source(94, 55) + SourceIndex(0)
15>Emitted(42, 64) Source(94, 65) + SourceIndex(0)
16>Emitted(42, 66) Source(94, 67) + SourceIndex(0)
17>Emitted(42, 75) Source(94, 76) + SourceIndex(0)
18>Emitted(42, 77) Source(94, 78) + SourceIndex(0)
19>Emitted(42, 85) Source(94, 86) + SourceIndex(0)
20>Emitted(42, 87) Source(94, 88) + SourceIndex(0)
21>Emitted(42, 89) Source(94, 90) + SourceIndex(0)
22>Emitted(42, 91) Source(89, 5) + SourceIndex(0)
23>Emitted(42, 105) Source(89, 27) + SourceIndex(0)
24>Emitted(42, 107) Source(89, 11) + SourceIndex(0)
25>Emitted(42, 112) Source(89, 16) + SourceIndex(0)
26>Emitted(42, 132) Source(89, 19) + SourceIndex(0)
27>Emitted(42, 140) Source(89, 27) + SourceIndex(0)
28>Emitted(42, 146) Source(89, 27) + SourceIndex(0)
29>Emitted(42, 148) Source(90, 5) + SourceIndex(0)
30>Emitted(42, 164) Source(93, 47) + SourceIndex(0)
31>Emitted(42, 166) Source(90, 5) + SourceIndex(0)
32>Emitted(42, 189) Source(93, 9) + SourceIndex(0)
33>Emitted(42, 191) Source(93, 11) + SourceIndex(0)
34>Emitted(42, 198) Source(93, 18) + SourceIndex(0)
35>Emitted(42, 200) Source(93, 20) + SourceIndex(0)
36>Emitted(42, 206) Source(93, 26) + SourceIndex(0)
37>Emitted(42, 208) Source(93, 28) + SourceIndex(0)
38>Emitted(42, 217) Source(93, 37) + SourceIndex(0)
39>Emitted(42, 219) Source(93, 39) + SourceIndex(0)
40>Emitted(42, 225) Source(93, 45) + SourceIndex(0)
41>Emitted(42, 227) Source(93, 47) + SourceIndex(0)
42>Emitted(42, 233) Source(93, 47) + SourceIndex(0)
43>Emitted(42, 235) Source(91, 9) + SourceIndex(0)
44>Emitted(42, 252) Source(91, 38) + SourceIndex(0)
45>Emitted(42, 254) Source(91, 18) + SourceIndex(0)
46>Emitted(42, 262) Source(91, 26) + SourceIndex(0)
47>Emitted(42, 282) Source(91, 29) + SourceIndex(0)
48>Emitted(42, 291) Source(91, 38) + SourceIndex(0)
49>Emitted(42, 297) Source(91, 38) + SourceIndex(0)
50>Emitted(42, 299) Source(92, 9) + SourceIndex(0)
51>Emitted(42, 318) Source(92, 44) + SourceIndex(0)
52>Emitted(42, 320) Source(92, 20) + SourceIndex(0)
53>Emitted(42, 330) Source(92, 30) + SourceIndex(0)
54>Emitted(42, 350) Source(92, 33) + SourceIndex(0)
55>Emitted(42, 361) Source(92, 44) + SourceIndex(0)
56>Emitted(42, 367) Source(92, 44) + SourceIndex(0)
57>Emitted(42, 369) Source(95, 5) + SourceIndex(0)
58>Emitted(42, 370) Source(95, 6) + SourceIndex(0)
59>Emitted(42, 373) Source(95, 9) + SourceIndex(0)
60>Emitted(42, 374) Source(95, 10) + SourceIndex(0)
61>Emitted(42, 376) Source(95, 12) + SourceIndex(0)
62>Emitted(42, 377) Source(95, 13) + SourceIndex(0)
63>Emitted(42, 380) Source(95, 16) + SourceIndex(0)
64>Emitted(42, 381) Source(95, 17) + SourceIndex(0)
65>Emitted(42, 383) Source(95, 19) + SourceIndex(0)
66>Emitted(42, 384) Source(95, 20) + SourceIndex(0)
67>Emitted(42, 386) Source(95, 22) + SourceIndex(0)
68>Emitted(42, 388) Source(95, 24) + SourceIndex(0)
---
>>>    console.log(primaryA);
1 >^^^^
2 >    ^^^^^^^
3 >           ^
4 >            ^^^
5 >               ^
6 >                ^^^^^^^^
7 >                        ^
8 >                         ^
1 >{
  >    
2 >    console
3 >           .
4 >            log
5 >               (
6 >                primaryA
7 >                        )
8 >                         ;
1 >Emitted(43, 5) Source(96, 5) + SourceIndex(0)
2 >Emitted(43, 12) Source(96, 12) + SourceIndex(0)
3 >Emitted(43, 13) Source(96, 13) + SourceIndex(0)
4 >Emitted(43, 16) Source(96, 16) + SourceIndex(0)
5 >Emitted(43, 17) Source(96, 17) + SourceIndex(0)
6 >Emitted(43, 25) Source(96, 25) + SourceIndex(0)
7 >Emitted(43, 26) Source(96, 26) + SourceIndex(0)
8 >Emitted(43, 27) Source(96, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(44, 2) Source(97, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js.map