File: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.sourcemap.txt

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (4317 lines) | stat: -rw-r--r-- 355,141 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
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
===================================================================
JsFile: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js
mapUrl: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js.map
sourceRoot: 
sources: sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js
sourceFile:sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts
-------------------------------------------------------------------
>>>var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _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;
>>>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(2, 1) Source(17, 1) + SourceIndex(0)
2 >Emitted(2, 5) Source(17, 5) + SourceIndex(0)
3 >Emitted(2, 10) Source(17, 10) + SourceIndex(0)
4 >Emitted(2, 13) Source(17, 20) + SourceIndex(0)
5 >Emitted(2, 15) Source(17, 22) + SourceIndex(0)
6 >Emitted(2, 19) Source(17, 26) + SourceIndex(0)
7 >Emitted(2, 21) Source(17, 28) + SourceIndex(0)
8 >Emitted(2, 28) Source(17, 35) + SourceIndex(0)
9 >Emitted(2, 30) Source(17, 37) + SourceIndex(0)
10>Emitted(2, 35) Source(17, 42) + SourceIndex(0)
11>Emitted(2, 37) Source(17, 44) + SourceIndex(0)
12>Emitted(2, 45) Source(17, 52) + SourceIndex(0)
13>Emitted(2, 47) Source(17, 54) + SourceIndex(0)
14>Emitted(2, 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(3, 1) Source(18, 1) + SourceIndex(0)
2 >Emitted(3, 5) Source(18, 5) + SourceIndex(0)
3 >Emitted(3, 15) Source(18, 15) + SourceIndex(0)
4 >Emitted(3, 18) Source(18, 30) + SourceIndex(0)
5 >Emitted(3, 20) Source(18, 32) + SourceIndex(0)
6 >Emitted(3, 24) Source(18, 36) + SourceIndex(0)
7 >Emitted(3, 26) Source(18, 38) + SourceIndex(0)
8 >Emitted(3, 33) Source(18, 45) + SourceIndex(0)
9 >Emitted(3, 35) Source(18, 47) + SourceIndex(0)
10>Emitted(3, 41) Source(18, 53) + SourceIndex(0)
11>Emitted(3, 43) Source(18, 55) + SourceIndex(0)
12>Emitted(3, 45) Source(18, 57) + SourceIndex(0)
13>Emitted(3, 52) Source(18, 64) + SourceIndex(0)
14>Emitted(3, 54) Source(18, 66) + SourceIndex(0)
15>Emitted(3, 62) Source(18, 74) + SourceIndex(0)
16>Emitted(3, 64) Source(18, 76) + SourceIndex(0)
17>Emitted(3, 73) Source(18, 85) + SourceIndex(0)
18>Emitted(3, 75) Source(18, 87) + SourceIndex(0)
19>Emitted(3, 81) Source(18, 93) + SourceIndex(0)
20>Emitted(3, 83) Source(18, 95) + SourceIndex(0)
21>Emitted(3, 85) Source(18, 97) + SourceIndex(0)
22>Emitted(3, 86) Source(18, 98) + SourceIndex(0)
---
>>>function getRobot() {
1 >
2 >^^^^^^^^^
3 >         ^^^^^^^^
4 >                 ^->
1 >
  >
2 >function 
3 >         getRobot
1 >Emitted(4, 1) Source(19, 1) + SourceIndex(0)
2 >Emitted(4, 10) Source(19, 10) + SourceIndex(0)
3 >Emitted(4, 18) Source(19, 18) + SourceIndex(0)
---
>>>    return robot;
1->^^^^
2 >    ^^^^^^^
3 >           ^^^^^
4 >                ^
1->() {
  >    
2 >    return 
3 >           robot
4 >                ;
1->Emitted(5, 5) Source(20, 5) + SourceIndex(0)
2 >Emitted(5, 12) Source(20, 12) + SourceIndex(0)
3 >Emitted(5, 17) Source(20, 17) + SourceIndex(0)
4 >Emitted(5, 18) Source(20, 18) + SourceIndex(0)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >
2 >}
1 >Emitted(6, 1) Source(21, 1) + SourceIndex(0)
2 >Emitted(6, 2) Source(21, 2) + SourceIndex(0)
---
>>>function getMultiRobot() {
1->
2 >^^^^^^^^^
3 >         ^^^^^^^^^^^^^
4 >                      ^->
1->
  >
2 >function 
3 >         getMultiRobot
1->Emitted(7, 1) Source(22, 1) + SourceIndex(0)
2 >Emitted(7, 10) Source(22, 10) + SourceIndex(0)
3 >Emitted(7, 23) Source(22, 23) + SourceIndex(0)
---
>>>    return multiRobot;
1->^^^^
2 >    ^^^^^^^
3 >           ^^^^^^^^^^
4 >                     ^
1->() {
  >    
2 >    return 
3 >           multiRobot
4 >                     ;
1->Emitted(8, 5) Source(23, 5) + SourceIndex(0)
2 >Emitted(8, 12) Source(23, 12) + SourceIndex(0)
3 >Emitted(8, 22) Source(23, 22) + SourceIndex(0)
4 >Emitted(8, 23) Source(23, 23) + SourceIndex(0)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >
2 >}
1 >Emitted(9, 1) Source(24, 1) + SourceIndex(0)
2 >Emitted(9, 2) Source(24, 2) + SourceIndex(0)
---
>>>var nameA, primaryA, secondaryA, i, skillA;
1->
2 >^^^^
3 >    ^^^^^
4 >         ^^
5 >           ^^^^^^^^
6 >                   ^^
7 >                     ^^^^^^^^^^
8 >                               ^^
9 >                                 ^
10>                                  ^^
11>                                    ^^^^^^
12>                                          ^
1->
  >
  >
2 >let 
3 >    nameA: string
4 >         , 
5 >           primaryA: string
6 >                   , 
7 >                     secondaryA: string
8 >                               , 
9 >                                 i: number
10>                                  , 
11>                                    skillA: string
12>                                          ;
1->Emitted(10, 1) Source(26, 1) + SourceIndex(0)
2 >Emitted(10, 5) Source(26, 5) + SourceIndex(0)
3 >Emitted(10, 10) Source(26, 18) + SourceIndex(0)
4 >Emitted(10, 12) Source(26, 20) + SourceIndex(0)
5 >Emitted(10, 20) Source(26, 36) + SourceIndex(0)
6 >Emitted(10, 22) Source(26, 38) + SourceIndex(0)
7 >Emitted(10, 32) Source(26, 56) + SourceIndex(0)
8 >Emitted(10, 34) Source(26, 58) + SourceIndex(0)
9 >Emitted(10, 35) Source(26, 67) + SourceIndex(0)
10>Emitted(10, 37) Source(26, 69) + SourceIndex(0)
11>Emitted(10, 43) Source(26, 83) + SourceIndex(0)
12>Emitted(10, 44) Source(26, 84) + SourceIndex(0)
---
>>>var name, primary, secondary, skill;
1 >
2 >^^^^
3 >    ^^^^
4 >        ^^
5 >          ^^^^^^^
6 >                 ^^
7 >                   ^^^^^^^^^
8 >                            ^^
9 >                              ^^^^^
10>                                   ^
11>                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >
2 >let 
3 >    name: string
4 >        , 
5 >          primary: string
6 >                 , 
7 >                   secondary: string
8 >                            , 
9 >                              skill: string
10>                                   ;
1 >Emitted(11, 1) Source(27, 1) + SourceIndex(0)
2 >Emitted(11, 5) Source(27, 5) + SourceIndex(0)
3 >Emitted(11, 9) Source(27, 17) + SourceIndex(0)
4 >Emitted(11, 11) Source(27, 19) + SourceIndex(0)
5 >Emitted(11, 18) Source(27, 34) + SourceIndex(0)
6 >Emitted(11, 20) Source(27, 36) + SourceIndex(0)
7 >Emitted(11, 29) Source(27, 53) + SourceIndex(0)
8 >Emitted(11, 31) Source(27, 55) + SourceIndex(0)
9 >Emitted(11, 36) Source(27, 68) + SourceIndex(0)
10>Emitted(11, 37) Source(27, 69) + SourceIndex(0)
---
>>>for (_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>                                                                              ^^
1->
  >
  >
2 >for ({
3 >     name: nameA = "noName" } = 
4 >          robot
5 >               
6 >                    
7 >                      nameA
8 >                            = 
9 >                                              "noName"
10>                                                      
11>                                                            } = robot, 
12>                                                             i
13>                                                               = 
14>                                                                 0
15>                                                                  ; 
16>                                                                    i
17>                                                                      < 
18>                                                                        1
19>                                                                         ; 
20>                                                                           i
21>                                                                            ++
22>                                                                              ) 
1->Emitted(12, 1) Source(29, 1) + SourceIndex(0)
2 >Emitted(12, 6) Source(29, 7) + SourceIndex(0)
3 >Emitted(12, 11) Source(29, 34) + SourceIndex(0)
4 >Emitted(12, 16) Source(29, 39) + SourceIndex(0)
5 >Emitted(12, 21) Source(29, 29) + SourceIndex(0)
6 >Emitted(12, 23) Source(29, 13) + SourceIndex(0)
7 >Emitted(12, 28) Source(29, 18) + SourceIndex(0)
8 >Emitted(12, 47) Source(29, 21) + SourceIndex(0)
9 >Emitted(12, 55) Source(29, 29) + SourceIndex(0)
10>Emitted(12, 60) Source(29, 29) + SourceIndex(0)
11>Emitted(12, 62) Source(29, 41) + SourceIndex(0)
12>Emitted(12, 63) Source(29, 42) + SourceIndex(0)
13>Emitted(12, 66) Source(29, 45) + SourceIndex(0)
14>Emitted(12, 67) Source(29, 46) + SourceIndex(0)
15>Emitted(12, 69) Source(29, 48) + SourceIndex(0)
16>Emitted(12, 70) Source(29, 49) + SourceIndex(0)
17>Emitted(12, 73) Source(29, 52) + SourceIndex(0)
18>Emitted(12, 74) Source(29, 53) + SourceIndex(0)
19>Emitted(12, 76) Source(29, 55) + SourceIndex(0)
20>Emitted(12, 77) Source(29, 56) + SourceIndex(0)
21>Emitted(12, 79) Source(29, 58) + SourceIndex(0)
22>Emitted(12, 81) Source(29, 60) + 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 (_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>                                                                                   ^^
1->
  >
2 >for ({
3 >     name: nameA = "noName" } = 
4 >          getRobot
5 >                  ()
6 >                    
7 >                         
8 >                           nameA
9 >                                 = 
10>                                                   "noName"
11>                                                           
12>                                                                 } = getRobot(), 
13>                                                                  i
14>                                                                    = 
15>                                                                      0
16>                                                                       ; 
17>                                                                         i
18>                                                                           < 
19>                                                                             1
20>                                                                              ; 
21>                                                                                i
22>                                                                                 ++
23>                                                                                   ) 
1->Emitted(15, 1) Source(32, 1) + SourceIndex(0)
2 >Emitted(15, 6) Source(32, 7) + SourceIndex(0)
3 >Emitted(15, 11) Source(32, 34) + SourceIndex(0)
4 >Emitted(15, 19) Source(32, 42) + SourceIndex(0)
5 >Emitted(15, 21) Source(32, 44) + SourceIndex(0)
6 >Emitted(15, 26) Source(32, 29) + SourceIndex(0)
7 >Emitted(15, 28) Source(32, 13) + SourceIndex(0)
8 >Emitted(15, 33) Source(32, 18) + SourceIndex(0)
9 >Emitted(15, 52) Source(32, 21) + SourceIndex(0)
10>Emitted(15, 60) Source(32, 29) + SourceIndex(0)
11>Emitted(15, 65) Source(32, 29) + SourceIndex(0)
12>Emitted(15, 67) Source(32, 46) + SourceIndex(0)
13>Emitted(15, 68) Source(32, 47) + SourceIndex(0)
14>Emitted(15, 71) Source(32, 50) + SourceIndex(0)
15>Emitted(15, 72) Source(32, 51) + SourceIndex(0)
16>Emitted(15, 74) Source(32, 53) + SourceIndex(0)
17>Emitted(15, 75) Source(32, 54) + SourceIndex(0)
18>Emitted(15, 78) Source(32, 57) + SourceIndex(0)
19>Emitted(15, 79) Source(32, 58) + SourceIndex(0)
20>Emitted(15, 81) Source(32, 60) + SourceIndex(0)
21>Emitted(15, 82) Source(32, 61) + SourceIndex(0)
22>Emitted(15, 84) Source(32, 63) + SourceIndex(0)
23>Emitted(15, 86) Source(32, 65) + 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 (_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>                                                                                                               ^^
1->
  >
2 >for ({
3 >     name: nameA = "noName" } = <Robot>
4 >          { 
5 >            name
6 >                : 
7 >                  "trimmer"
8 >                           , 
9 >                             skill
10>                                  : 
11>                                    "trimming"
12>                                               }
13>                                                
14>                                                     
15>                                                       nameA
16>                                                             = 
17>                                                                               "noName"
18>                                                                                       
19>                                                                                             } = <Robot>{ name: "trimmer", skill: "trimming" }, 
20>                                                                                              i
21>                                                                                                = 
22>                                                                                                  0
23>                                                                                                   ; 
24>                                                                                                     i
25>                                                                                                       < 
26>                                                                                                         1
27>                                                                                                          ; 
28>                                                                                                            i
29>                                                                                                             ++
30>                                                                                                               ) 
1->Emitted(18, 1) Source(35, 1) + SourceIndex(0)
2 >Emitted(18, 6) Source(35, 7) + SourceIndex(0)
3 >Emitted(18, 11) Source(35, 41) + SourceIndex(0)
4 >Emitted(18, 13) Source(35, 43) + SourceIndex(0)
5 >Emitted(18, 17) Source(35, 47) + SourceIndex(0)
6 >Emitted(18, 19) Source(35, 49) + SourceIndex(0)
7 >Emitted(18, 28) Source(35, 58) + SourceIndex(0)
8 >Emitted(18, 30) Source(35, 60) + SourceIndex(0)
9 >Emitted(18, 35) Source(35, 65) + SourceIndex(0)
10>Emitted(18, 37) Source(35, 67) + SourceIndex(0)
11>Emitted(18, 47) Source(35, 77) + SourceIndex(0)
12>Emitted(18, 49) Source(35, 79) + SourceIndex(0)
13>Emitted(18, 54) Source(35, 29) + SourceIndex(0)
14>Emitted(18, 56) Source(35, 13) + SourceIndex(0)
15>Emitted(18, 61) Source(35, 18) + SourceIndex(0)
16>Emitted(18, 80) Source(35, 21) + SourceIndex(0)
17>Emitted(18, 88) Source(35, 29) + SourceIndex(0)
18>Emitted(18, 93) Source(35, 29) + SourceIndex(0)
19>Emitted(18, 95) Source(35, 81) + SourceIndex(0)
20>Emitted(18, 96) Source(35, 82) + SourceIndex(0)
21>Emitted(18, 99) Source(35, 85) + SourceIndex(0)
22>Emitted(18, 100) Source(35, 86) + SourceIndex(0)
23>Emitted(18, 102) Source(35, 88) + SourceIndex(0)
24>Emitted(18, 103) Source(35, 89) + SourceIndex(0)
25>Emitted(18, 106) Source(35, 92) + SourceIndex(0)
26>Emitted(18, 107) Source(35, 93) + SourceIndex(0)
27>Emitted(18, 109) Source(35, 95) + SourceIndex(0)
28>Emitted(18, 110) Source(35, 96) + SourceIndex(0)
29>Emitted(18, 112) Source(35, 98) + SourceIndex(0)
30>Emitted(18, 114) Source(35, 100) + 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(19, 5) Source(36, 5) + SourceIndex(0)
2 >Emitted(19, 12) Source(36, 12) + SourceIndex(0)
3 >Emitted(19, 13) Source(36, 13) + SourceIndex(0)
4 >Emitted(19, 16) Source(36, 16) + SourceIndex(0)
5 >Emitted(19, 17) Source(36, 17) + SourceIndex(0)
6 >Emitted(19, 22) Source(36, 22) + SourceIndex(0)
7 >Emitted(19, 23) Source(36, 23) + SourceIndex(0)
8 >Emitted(19, 24) Source(36, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(20, 2) Source(37, 2) + SourceIndex(0)
---
>>>for (_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>                                                                                                                                                                                                                                              ^^
1->
  >
2 >for ({
  >    
3 >     skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >          multiRobot
5 >                    
6 >                           
7 >                             skills: {
  >                                     primary: primaryA = "primary",
  >                                     secondary: secondaryA = "secondary"
  >                                 } = 
8 >                                                  { 
9 >                                                    primary
10>                                                           : 
11>                                                             "none"
12>                                                                   , 
13>                                                                     secondary
14>                                                                              : 
15>                                                                                "none"
16>                                                                                       }
17>                                                                                        
18>                                                                                             
19>                                                                                               primary: primaryA = "primary"
20>                                                                                                              
21>                                                                                                                primaryA
22>                                                                                                                         = 
23>                                                                                                                                           "primary"
24>                                                                                                                                                    
25>                                                                                                                                                         ,
  >                                                                                                                                                                 
26>                                                                                                                                                           secondary: secondaryA = "secondary"
27>                                                                                                                                                                            
28>                                                                                                                                                                              secondaryA
29>                                                                                                                                                                                         = 
30>                                                                                                                                                                                                           "secondary"
31>                                                                                                                                                                                                                      
32>                                                                                                                                                                                                                           
  >                                                                                                                                                                                                                               } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                           } = multiRobot, 
33>                                                                                                                                                                                                                             i
34>                                                                                                                                                                                                                               = 
35>                                                                                                                                                                                                                                 0
36>                                                                                                                                                                                                                                  ; 
37>                                                                                                                                                                                                                                    i
38>                                                                                                                                                                                                                                      < 
39>                                                                                                                                                                                                                                        1
40>                                                                                                                                                                                                                                         ; 
41>                                                                                                                                                                                                                                           i
42>                                                                                                                                                                                                                                            ++
43>                                                                                                                                                                                                                                              ) 
1->Emitted(21, 1) Source(38, 1) + SourceIndex(0)
2 >Emitted(21, 6) Source(39, 5) + SourceIndex(0)
3 >Emitted(21, 11) Source(43, 5) + SourceIndex(0)
4 >Emitted(21, 21) Source(43, 15) + SourceIndex(0)
5 >Emitted(21, 28) Source(42, 47) + SourceIndex(0)
6 >Emitted(21, 30) Source(39, 5) + SourceIndex(0)
7 >Emitted(21, 51) Source(42, 9) + SourceIndex(0)
8 >Emitted(21, 53) Source(42, 11) + SourceIndex(0)
9 >Emitted(21, 60) Source(42, 18) + SourceIndex(0)
10>Emitted(21, 62) Source(42, 20) + SourceIndex(0)
11>Emitted(21, 68) Source(42, 26) + SourceIndex(0)
12>Emitted(21, 70) Source(42, 28) + SourceIndex(0)
13>Emitted(21, 79) Source(42, 37) + SourceIndex(0)
14>Emitted(21, 81) Source(42, 39) + SourceIndex(0)
15>Emitted(21, 87) Source(42, 45) + SourceIndex(0)
16>Emitted(21, 89) Source(42, 47) + SourceIndex(0)
17>Emitted(21, 94) Source(42, 47) + SourceIndex(0)
18>Emitted(21, 96) Source(40, 9) + SourceIndex(0)
19>Emitted(21, 111) Source(40, 38) + SourceIndex(0)
20>Emitted(21, 113) Source(40, 18) + SourceIndex(0)
21>Emitted(21, 121) Source(40, 26) + SourceIndex(0)
22>Emitted(21, 140) Source(40, 29) + SourceIndex(0)
23>Emitted(21, 149) Source(40, 38) + SourceIndex(0)
24>Emitted(21, 154) Source(40, 38) + SourceIndex(0)
25>Emitted(21, 156) Source(41, 9) + SourceIndex(0)
26>Emitted(21, 173) Source(41, 44) + SourceIndex(0)
27>Emitted(21, 175) Source(41, 20) + SourceIndex(0)
28>Emitted(21, 185) Source(41, 30) + SourceIndex(0)
29>Emitted(21, 204) Source(41, 33) + SourceIndex(0)
30>Emitted(21, 215) Source(41, 44) + SourceIndex(0)
31>Emitted(21, 220) Source(41, 44) + SourceIndex(0)
32>Emitted(21, 222) Source(43, 17) + SourceIndex(0)
33>Emitted(21, 223) Source(43, 18) + SourceIndex(0)
34>Emitted(21, 226) Source(43, 21) + SourceIndex(0)
35>Emitted(21, 227) Source(43, 22) + SourceIndex(0)
36>Emitted(21, 229) Source(43, 24) + SourceIndex(0)
37>Emitted(21, 230) Source(43, 25) + SourceIndex(0)
38>Emitted(21, 233) Source(43, 28) + SourceIndex(0)
39>Emitted(21, 234) Source(43, 29) + SourceIndex(0)
40>Emitted(21, 236) Source(43, 31) + SourceIndex(0)
41>Emitted(21, 237) Source(43, 32) + SourceIndex(0)
42>Emitted(21, 239) Source(43, 34) + SourceIndex(0)
43>Emitted(21, 241) Source(43, 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(22, 5) Source(44, 5) + SourceIndex(0)
2 >Emitted(22, 12) Source(44, 12) + SourceIndex(0)
3 >Emitted(22, 13) Source(44, 13) + SourceIndex(0)
4 >Emitted(22, 16) Source(44, 16) + SourceIndex(0)
5 >Emitted(22, 17) Source(44, 17) + SourceIndex(0)
6 >Emitted(22, 25) Source(44, 25) + SourceIndex(0)
7 >Emitted(22, 26) Source(44, 26) + SourceIndex(0)
8 >Emitted(22, 27) Source(44, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(23, 2) Source(45, 2) + SourceIndex(0)
---
>>>for (_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>                                                                                                                                                                                                                                                   ^^
1->
  >
2 >for ({
  >    
3 >     skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >          getMultiRobot
5 >                       ()
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" }
  >                                                                                                                                                                                                                                } = getMultiRobot(), 
34>                                                                                                                                                                                                                                  i
35>                                                                                                                                                                                                                                    = 
36>                                                                                                                                                                                                                                      0
37>                                                                                                                                                                                                                                       ; 
38>                                                                                                                                                                                                                                         i
39>                                                                                                                                                                                                                                           < 
40>                                                                                                                                                                                                                                             1
41>                                                                                                                                                                                                                                              ; 
42>                                                                                                                                                                                                                                                i
43>                                                                                                                                                                                                                                                 ++
44>                                                                                                                                                                                                                                                   ) 
1->Emitted(24, 1) Source(46, 1) + SourceIndex(0)
2 >Emitted(24, 6) Source(47, 5) + SourceIndex(0)
3 >Emitted(24, 11) Source(51, 5) + SourceIndex(0)
4 >Emitted(24, 24) Source(51, 18) + SourceIndex(0)
5 >Emitted(24, 26) Source(51, 20) + SourceIndex(0)
6 >Emitted(24, 33) Source(50, 47) + SourceIndex(0)
7 >Emitted(24, 35) Source(47, 5) + SourceIndex(0)
8 >Emitted(24, 56) Source(50, 9) + SourceIndex(0)
9 >Emitted(24, 58) Source(50, 11) + SourceIndex(0)
10>Emitted(24, 65) Source(50, 18) + SourceIndex(0)
11>Emitted(24, 67) Source(50, 20) + SourceIndex(0)
12>Emitted(24, 73) Source(50, 26) + SourceIndex(0)
13>Emitted(24, 75) Source(50, 28) + SourceIndex(0)
14>Emitted(24, 84) Source(50, 37) + SourceIndex(0)
15>Emitted(24, 86) Source(50, 39) + SourceIndex(0)
16>Emitted(24, 92) Source(50, 45) + SourceIndex(0)
17>Emitted(24, 94) Source(50, 47) + SourceIndex(0)
18>Emitted(24, 99) Source(50, 47) + SourceIndex(0)
19>Emitted(24, 101) Source(48, 9) + SourceIndex(0)
20>Emitted(24, 116) Source(48, 38) + SourceIndex(0)
21>Emitted(24, 118) Source(48, 18) + SourceIndex(0)
22>Emitted(24, 126) Source(48, 26) + SourceIndex(0)
23>Emitted(24, 145) Source(48, 29) + SourceIndex(0)
24>Emitted(24, 154) Source(48, 38) + SourceIndex(0)
25>Emitted(24, 159) Source(48, 38) + SourceIndex(0)
26>Emitted(24, 161) Source(49, 9) + SourceIndex(0)
27>Emitted(24, 178) Source(49, 44) + SourceIndex(0)
28>Emitted(24, 180) Source(49, 20) + SourceIndex(0)
29>Emitted(24, 190) Source(49, 30) + SourceIndex(0)
30>Emitted(24, 209) Source(49, 33) + SourceIndex(0)
31>Emitted(24, 220) Source(49, 44) + SourceIndex(0)
32>Emitted(24, 225) Source(49, 44) + SourceIndex(0)
33>Emitted(24, 227) Source(51, 22) + SourceIndex(0)
34>Emitted(24, 228) Source(51, 23) + SourceIndex(0)
35>Emitted(24, 231) Source(51, 26) + SourceIndex(0)
36>Emitted(24, 232) Source(51, 27) + SourceIndex(0)
37>Emitted(24, 234) Source(51, 29) + SourceIndex(0)
38>Emitted(24, 235) Source(51, 30) + SourceIndex(0)
39>Emitted(24, 238) Source(51, 33) + SourceIndex(0)
40>Emitted(24, 239) Source(51, 34) + SourceIndex(0)
41>Emitted(24, 241) Source(51, 36) + SourceIndex(0)
42>Emitted(24, 242) Source(51, 37) + SourceIndex(0)
43>Emitted(24, 244) Source(51, 39) + SourceIndex(0)
44>Emitted(24, 246) Source(51, 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(25, 5) Source(52, 5) + SourceIndex(0)
2 >Emitted(25, 12) Source(52, 12) + SourceIndex(0)
3 >Emitted(25, 13) Source(52, 13) + SourceIndex(0)
4 >Emitted(25, 16) Source(52, 16) + SourceIndex(0)
5 >Emitted(25, 17) Source(52, 17) + SourceIndex(0)
6 >Emitted(25, 25) Source(52, 25) + SourceIndex(0)
7 >Emitted(25, 26) Source(52, 26) + SourceIndex(0)
8 >Emitted(25, 27) Source(52, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(26, 2) Source(53, 2) + SourceIndex(0)
---
>>>for (_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,
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>                                                                                                                                                                                                                                                                                     ^^^^^
1->
  >
2 >for ({
  >    
3 >     skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = <MultiRobot>
4 >          { 
5 >            name
6 >                : 
7 >                  "trimmer"
8 >                           , 
9 >                             skills
10>                                   : 
11>                                     { 
12>                                       primary
13>                                              : 
14>                                                "trimming"
15>                                                          , 
16>                                                            secondary
17>                                                                     : 
18>                                                                       "edging"
19>                                                                                }
20>                                                                                  }
21>                                                                                   
22>                                                                                          
23>                                                                                            skills: {
  >                                                                                                    primary: primaryA = "primary",
  >                                                                                                    secondary: secondaryA = "secondary"
  >                                                                                                } = 
24>                                                                                                                 { 
25>                                                                                                                   primary
26>                                                                                                                          : 
27>                                                                                                                            "none"
28>                                                                                                                                  , 
29>                                                                                                                                    secondary
30>                                                                                                                                             : 
31>                                                                                                                                               "none"
32>                                                                                                                                                      }
33>                                                                                                                                                       
34>                                                                                                                                                            
35>                                                                                                                                                              primary: primaryA = "primary"
36>                                                                                                                                                                             
37>                                                                                                                                                                               primaryA
38>                                                                                                                                                                                        = 
39>                                                                                                                                                                                                          "primary"
40>                                                                                                                                                                                                                   
41>                                                                                                                                                                                                                        ,
  >                                                                                                                                                                                                                                
42>                                                                                                                                                                                                                          secondary: secondaryA = "secondary"
43>                                                                                                                                                                                                                                           
44>                                                                                                                                                                                                                                             secondaryA
45>                                                                                                                                                                                                                                                        = 
46>                                                                                                                                                                                                                                                                          "secondary"
47>                                                                                                                                                                                                                                                                                     
1->Emitted(27, 1) Source(54, 1) + SourceIndex(0)
2 >Emitted(27, 6) Source(55, 5) + SourceIndex(0)
3 >Emitted(27, 11) Source(59, 17) + SourceIndex(0)
4 >Emitted(27, 13) Source(59, 19) + SourceIndex(0)
5 >Emitted(27, 17) Source(59, 23) + SourceIndex(0)
6 >Emitted(27, 19) Source(59, 25) + SourceIndex(0)
7 >Emitted(27, 28) Source(59, 34) + SourceIndex(0)
8 >Emitted(27, 30) Source(59, 36) + SourceIndex(0)
9 >Emitted(27, 36) Source(59, 42) + SourceIndex(0)
10>Emitted(27, 38) Source(59, 44) + SourceIndex(0)
11>Emitted(27, 40) Source(59, 46) + SourceIndex(0)
12>Emitted(27, 47) Source(59, 53) + SourceIndex(0)
13>Emitted(27, 49) Source(59, 55) + SourceIndex(0)
14>Emitted(27, 59) Source(59, 65) + SourceIndex(0)
15>Emitted(27, 61) Source(59, 67) + SourceIndex(0)
16>Emitted(27, 70) Source(59, 76) + SourceIndex(0)
17>Emitted(27, 72) Source(59, 78) + SourceIndex(0)
18>Emitted(27, 80) Source(59, 86) + SourceIndex(0)
19>Emitted(27, 82) Source(59, 88) + SourceIndex(0)
20>Emitted(27, 84) Source(59, 90) + SourceIndex(0)
21>Emitted(27, 91) Source(58, 47) + SourceIndex(0)
22>Emitted(27, 93) Source(55, 5) + SourceIndex(0)
23>Emitted(27, 114) Source(58, 9) + SourceIndex(0)
24>Emitted(27, 116) Source(58, 11) + SourceIndex(0)
25>Emitted(27, 123) Source(58, 18) + SourceIndex(0)
26>Emitted(27, 125) Source(58, 20) + SourceIndex(0)
27>Emitted(27, 131) Source(58, 26) + SourceIndex(0)
28>Emitted(27, 133) Source(58, 28) + SourceIndex(0)
29>Emitted(27, 142) Source(58, 37) + SourceIndex(0)
30>Emitted(27, 144) Source(58, 39) + SourceIndex(0)
31>Emitted(27, 150) Source(58, 45) + SourceIndex(0)
32>Emitted(27, 152) Source(58, 47) + SourceIndex(0)
33>Emitted(27, 157) Source(58, 47) + SourceIndex(0)
34>Emitted(27, 159) Source(56, 9) + SourceIndex(0)
35>Emitted(27, 174) Source(56, 38) + SourceIndex(0)
36>Emitted(27, 176) Source(56, 18) + SourceIndex(0)
37>Emitted(27, 184) Source(56, 26) + SourceIndex(0)
38>Emitted(27, 203) Source(56, 29) + SourceIndex(0)
39>Emitted(27, 212) Source(56, 38) + SourceIndex(0)
40>Emitted(27, 217) Source(56, 38) + SourceIndex(0)
41>Emitted(27, 219) Source(57, 9) + SourceIndex(0)
42>Emitted(27, 236) Source(57, 44) + SourceIndex(0)
43>Emitted(27, 238) Source(57, 20) + SourceIndex(0)
44>Emitted(27, 248) Source(57, 30) + SourceIndex(0)
45>Emitted(27, 267) Source(57, 33) + SourceIndex(0)
46>Emitted(27, 278) Source(57, 44) + SourceIndex(0)
47>Emitted(27, 283) Source(57, 44) + SourceIndex(0)
---
>>>    i = 0; i < 1; i++) {
1 >^^^^
2 >    ^
3 >     ^^^
4 >        ^
5 >         ^^
6 >           ^
7 >            ^^^
8 >               ^
9 >                ^^
10>                  ^
11>                   ^^
12>                     ^^
13>                       ^^^^->
1 >
  >    } = { primary: "none", secondary: "none" }
  >} = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >    
2 >    i
3 >      = 
4 >        0
5 >         ; 
6 >           i
7 >             < 
8 >               1
9 >                ; 
10>                  i
11>                   ++
12>                     ) 
1 >Emitted(28, 5) Source(60, 5) + SourceIndex(0)
2 >Emitted(28, 6) Source(60, 6) + SourceIndex(0)
3 >Emitted(28, 9) Source(60, 9) + SourceIndex(0)
4 >Emitted(28, 10) Source(60, 10) + SourceIndex(0)
5 >Emitted(28, 12) Source(60, 12) + SourceIndex(0)
6 >Emitted(28, 13) Source(60, 13) + SourceIndex(0)
7 >Emitted(28, 16) Source(60, 16) + SourceIndex(0)
8 >Emitted(28, 17) Source(60, 17) + SourceIndex(0)
9 >Emitted(28, 19) Source(60, 19) + SourceIndex(0)
10>Emitted(28, 20) Source(60, 20) + SourceIndex(0)
11>Emitted(28, 22) Source(60, 22) + SourceIndex(0)
12>Emitted(28, 24) Source(60, 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(29, 5) Source(61, 5) + SourceIndex(0)
2 >Emitted(29, 12) Source(61, 12) + SourceIndex(0)
3 >Emitted(29, 13) Source(61, 13) + SourceIndex(0)
4 >Emitted(29, 16) Source(61, 16) + SourceIndex(0)
5 >Emitted(29, 17) Source(61, 17) + SourceIndex(0)
6 >Emitted(29, 25) Source(61, 25) + SourceIndex(0)
7 >Emitted(29, 26) Source(61, 26) + SourceIndex(0)
8 >Emitted(29, 27) Source(61, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(30, 2) Source(62, 2) + SourceIndex(0)
---
>>>for (_r = robot.name, name = _r === void 0 ? "noName" : _r, 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>                                                                             ^^
1->
  >
  >
2 >for ({ 
3 >     name = "noName" } = 
4 >          robot
5 >               
6 >                    
7 >                      name
8 >                           = 
9 >                                             "noName"
10>                                                     
11>                                                           } = robot, 
12>                                                            i
13>                                                              = 
14>                                                                0
15>                                                                 ; 
16>                                                                   i
17>                                                                     < 
18>                                                                       1
19>                                                                        ; 
20>                                                                          i
21>                                                                           ++
22>                                                                             ) 
1->Emitted(31, 1) Source(64, 1) + SourceIndex(0)
2 >Emitted(31, 6) Source(64, 8) + SourceIndex(0)
3 >Emitted(31, 11) Source(64, 28) + SourceIndex(0)
4 >Emitted(31, 16) Source(64, 33) + SourceIndex(0)
5 >Emitted(31, 21) Source(64, 23) + SourceIndex(0)
6 >Emitted(31, 23) Source(64, 8) + SourceIndex(0)
7 >Emitted(31, 27) Source(64, 12) + SourceIndex(0)
8 >Emitted(31, 46) Source(64, 15) + SourceIndex(0)
9 >Emitted(31, 54) Source(64, 23) + SourceIndex(0)
10>Emitted(31, 59) Source(64, 23) + SourceIndex(0)
11>Emitted(31, 61) Source(64, 35) + SourceIndex(0)
12>Emitted(31, 62) Source(64, 36) + SourceIndex(0)
13>Emitted(31, 65) Source(64, 39) + SourceIndex(0)
14>Emitted(31, 66) Source(64, 40) + SourceIndex(0)
15>Emitted(31, 68) Source(64, 42) + SourceIndex(0)
16>Emitted(31, 69) Source(64, 43) + SourceIndex(0)
17>Emitted(31, 72) Source(64, 46) + SourceIndex(0)
18>Emitted(31, 73) Source(64, 47) + SourceIndex(0)
19>Emitted(31, 75) Source(64, 49) + SourceIndex(0)
20>Emitted(31, 76) Source(64, 50) + SourceIndex(0)
21>Emitted(31, 78) Source(64, 52) + SourceIndex(0)
22>Emitted(31, 80) Source(64, 54) + 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(32, 5) Source(65, 5) + SourceIndex(0)
2 >Emitted(32, 12) Source(65, 12) + SourceIndex(0)
3 >Emitted(32, 13) Source(65, 13) + SourceIndex(0)
4 >Emitted(32, 16) Source(65, 16) + SourceIndex(0)
5 >Emitted(32, 17) Source(65, 17) + SourceIndex(0)
6 >Emitted(32, 22) Source(65, 22) + SourceIndex(0)
7 >Emitted(32, 23) Source(65, 23) + SourceIndex(0)
8 >Emitted(32, 24) Source(65, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(33, 2) Source(66, 2) + SourceIndex(0)
---
>>>for (_s = getRobot().name, name = _s === void 0 ? "noName" : _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>                                                                                  ^^
1->
  >
2 >for ({ 
3 >     name = "noName" } = 
4 >          getRobot
5 >                  ()
6 >                    
7 >                         
8 >                           name
9 >                                = 
10>                                                  "noName"
11>                                                          
12>                                                                } = getRobot(), 
13>                                                                 i
14>                                                                   = 
15>                                                                     0
16>                                                                      ; 
17>                                                                        i
18>                                                                          < 
19>                                                                            1
20>                                                                             ; 
21>                                                                               i
22>                                                                                ++
23>                                                                                  ) 
1->Emitted(34, 1) Source(67, 1) + SourceIndex(0)
2 >Emitted(34, 6) Source(67, 8) + SourceIndex(0)
3 >Emitted(34, 11) Source(67, 28) + SourceIndex(0)
4 >Emitted(34, 19) Source(67, 36) + SourceIndex(0)
5 >Emitted(34, 21) Source(67, 38) + SourceIndex(0)
6 >Emitted(34, 26) Source(67, 23) + SourceIndex(0)
7 >Emitted(34, 28) Source(67, 8) + SourceIndex(0)
8 >Emitted(34, 32) Source(67, 12) + SourceIndex(0)
9 >Emitted(34, 51) Source(67, 15) + SourceIndex(0)
10>Emitted(34, 59) Source(67, 23) + SourceIndex(0)
11>Emitted(34, 64) Source(67, 23) + SourceIndex(0)
12>Emitted(34, 66) Source(67, 40) + SourceIndex(0)
13>Emitted(34, 67) Source(67, 41) + SourceIndex(0)
14>Emitted(34, 70) Source(67, 44) + SourceIndex(0)
15>Emitted(34, 71) Source(67, 45) + SourceIndex(0)
16>Emitted(34, 73) Source(67, 47) + SourceIndex(0)
17>Emitted(34, 74) Source(67, 48) + SourceIndex(0)
18>Emitted(34, 77) Source(67, 51) + SourceIndex(0)
19>Emitted(34, 78) Source(67, 52) + SourceIndex(0)
20>Emitted(34, 80) Source(67, 54) + SourceIndex(0)
21>Emitted(34, 81) Source(67, 55) + SourceIndex(0)
22>Emitted(34, 83) Source(67, 57) + SourceIndex(0)
23>Emitted(34, 85) Source(67, 59) + 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(35, 5) Source(68, 5) + SourceIndex(0)
2 >Emitted(35, 12) Source(68, 12) + SourceIndex(0)
3 >Emitted(35, 13) Source(68, 13) + SourceIndex(0)
4 >Emitted(35, 16) Source(68, 16) + SourceIndex(0)
5 >Emitted(35, 17) Source(68, 17) + SourceIndex(0)
6 >Emitted(35, 22) Source(68, 22) + SourceIndex(0)
7 >Emitted(35, 23) Source(68, 23) + SourceIndex(0)
8 >Emitted(35, 24) Source(68, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(36, 2) Source(69, 2) + SourceIndex(0)
---
>>>for (_t = { name: "trimmer", skill: "trimming" }.name, name = _t === void 0 ? "noName" : _t, 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>                                                                                                              ^^
1->
  >
2 >for ({ 
3 >     name = "noName" } = <Robot>
4 >          { 
5 >            name
6 >                : 
7 >                  "trimmer"
8 >                           , 
9 >                             skill
10>                                  : 
11>                                    "trimming"
12>                                               }
13>                                                
14>                                                     
15>                                                       name
16>                                                            = 
17>                                                                              "noName"
18>                                                                                      
19>                                                                                            } = <Robot>{ name: "trimmer", skill: "trimming" }, 
20>                                                                                             i
21>                                                                                               = 
22>                                                                                                 0
23>                                                                                                  ; 
24>                                                                                                    i
25>                                                                                                      < 
26>                                                                                                        1
27>                                                                                                         ; 
28>                                                                                                           i
29>                                                                                                            ++
30>                                                                                                              ) 
1->Emitted(37, 1) Source(70, 1) + SourceIndex(0)
2 >Emitted(37, 6) Source(70, 8) + SourceIndex(0)
3 >Emitted(37, 11) Source(70, 35) + SourceIndex(0)
4 >Emitted(37, 13) Source(70, 37) + SourceIndex(0)
5 >Emitted(37, 17) Source(70, 41) + SourceIndex(0)
6 >Emitted(37, 19) Source(70, 43) + SourceIndex(0)
7 >Emitted(37, 28) Source(70, 52) + SourceIndex(0)
8 >Emitted(37, 30) Source(70, 54) + SourceIndex(0)
9 >Emitted(37, 35) Source(70, 59) + SourceIndex(0)
10>Emitted(37, 37) Source(70, 61) + SourceIndex(0)
11>Emitted(37, 47) Source(70, 71) + SourceIndex(0)
12>Emitted(37, 49) Source(70, 73) + SourceIndex(0)
13>Emitted(37, 54) Source(70, 23) + SourceIndex(0)
14>Emitted(37, 56) Source(70, 8) + SourceIndex(0)
15>Emitted(37, 60) Source(70, 12) + SourceIndex(0)
16>Emitted(37, 79) Source(70, 15) + SourceIndex(0)
17>Emitted(37, 87) Source(70, 23) + SourceIndex(0)
18>Emitted(37, 92) Source(70, 23) + SourceIndex(0)
19>Emitted(37, 94) Source(70, 75) + SourceIndex(0)
20>Emitted(37, 95) Source(70, 76) + SourceIndex(0)
21>Emitted(37, 98) Source(70, 79) + SourceIndex(0)
22>Emitted(37, 99) Source(70, 80) + SourceIndex(0)
23>Emitted(37, 101) Source(70, 82) + SourceIndex(0)
24>Emitted(37, 102) Source(70, 83) + SourceIndex(0)
25>Emitted(37, 105) Source(70, 86) + SourceIndex(0)
26>Emitted(37, 106) Source(70, 87) + SourceIndex(0)
27>Emitted(37, 108) Source(70, 89) + SourceIndex(0)
28>Emitted(37, 109) Source(70, 90) + SourceIndex(0)
29>Emitted(37, 111) Source(70, 92) + SourceIndex(0)
30>Emitted(37, 113) Source(70, 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(38, 5) Source(71, 5) + SourceIndex(0)
2 >Emitted(38, 12) Source(71, 12) + SourceIndex(0)
3 >Emitted(38, 13) Source(71, 13) + SourceIndex(0)
4 >Emitted(38, 16) Source(71, 16) + SourceIndex(0)
5 >Emitted(38, 17) Source(71, 17) + SourceIndex(0)
6 >Emitted(38, 22) Source(71, 22) + SourceIndex(0)
7 >Emitted(38, 23) Source(71, 23) + SourceIndex(0)
8 >Emitted(38, 24) Source(71, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(39, 2) Source(72, 2) + SourceIndex(0)
---
>>>for (_u = multiRobot.skills, _v = _u === void 0 ? { primary: "none", secondary: "none" } : _u, _w = _v.primary, primary = _w === void 0 ? "primary" : _w, _x = _v.secondary, secondary = _x === void 0 ? "secondary" : _x, 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>                                                                                                                                                                                                                                            ^^
1->
  >
2 >for ({
  >    
3 >     skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >          multiRobot
5 >                    
6 >                           
7 >                             skills: {
  >                                     primary = "primary",
  >                                     secondary = "secondary"
  >                                 } = 
8 >                                                  { 
9 >                                                    primary
10>                                                           : 
11>                                                             "none"
12>                                                                   , 
13>                                                                     secondary
14>                                                                              : 
15>                                                                                "none"
16>                                                                                       }
17>                                                                                        
18>                                                                                             
19>                                                                                               primary = "primary"
20>                                                                                                              
21>                                                                                                                primary
22>                                                                                                                        = 
23>                                                                                                                                          "primary"
24>                                                                                                                                                   
25>                                                                                                                                                        ,
  >                                                                                                                                                                
26>                                                                                                                                                          secondary = "secondary"
27>                                                                                                                                                                           
28>                                                                                                                                                                             secondary
29>                                                                                                                                                                                       = 
30>                                                                                                                                                                                                         "secondary"
31>                                                                                                                                                                                                                    
32>                                                                                                                                                                                                                         
  >                                                                                                                                                                                                                             } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                         } = multiRobot, 
33>                                                                                                                                                                                                                           i
34>                                                                                                                                                                                                                             = 
35>                                                                                                                                                                                                                               0
36>                                                                                                                                                                                                                                ; 
37>                                                                                                                                                                                                                                  i
38>                                                                                                                                                                                                                                    < 
39>                                                                                                                                                                                                                                      1
40>                                                                                                                                                                                                                                       ; 
41>                                                                                                                                                                                                                                         i
42>                                                                                                                                                                                                                                          ++
43>                                                                                                                                                                                                                                            ) 
1->Emitted(40, 1) Source(73, 1) + SourceIndex(0)
2 >Emitted(40, 6) Source(74, 5) + SourceIndex(0)
3 >Emitted(40, 11) Source(78, 5) + SourceIndex(0)
4 >Emitted(40, 21) Source(78, 15) + SourceIndex(0)
5 >Emitted(40, 28) Source(77, 47) + SourceIndex(0)
6 >Emitted(40, 30) Source(74, 5) + SourceIndex(0)
7 >Emitted(40, 51) Source(77, 9) + SourceIndex(0)
8 >Emitted(40, 53) Source(77, 11) + SourceIndex(0)
9 >Emitted(40, 60) Source(77, 18) + SourceIndex(0)
10>Emitted(40, 62) Source(77, 20) + SourceIndex(0)
11>Emitted(40, 68) Source(77, 26) + SourceIndex(0)
12>Emitted(40, 70) Source(77, 28) + SourceIndex(0)
13>Emitted(40, 79) Source(77, 37) + SourceIndex(0)
14>Emitted(40, 81) Source(77, 39) + SourceIndex(0)
15>Emitted(40, 87) Source(77, 45) + SourceIndex(0)
16>Emitted(40, 89) Source(77, 47) + SourceIndex(0)
17>Emitted(40, 94) Source(77, 47) + SourceIndex(0)
18>Emitted(40, 96) Source(75, 9) + SourceIndex(0)
19>Emitted(40, 111) Source(75, 28) + SourceIndex(0)
20>Emitted(40, 113) Source(75, 9) + SourceIndex(0)
21>Emitted(40, 120) Source(75, 16) + SourceIndex(0)
22>Emitted(40, 139) Source(75, 19) + SourceIndex(0)
23>Emitted(40, 148) Source(75, 28) + SourceIndex(0)
24>Emitted(40, 153) Source(75, 28) + SourceIndex(0)
25>Emitted(40, 155) Source(76, 9) + SourceIndex(0)
26>Emitted(40, 172) Source(76, 32) + SourceIndex(0)
27>Emitted(40, 174) Source(76, 9) + SourceIndex(0)
28>Emitted(40, 183) Source(76, 18) + SourceIndex(0)
29>Emitted(40, 202) Source(76, 21) + SourceIndex(0)
30>Emitted(40, 213) Source(76, 32) + SourceIndex(0)
31>Emitted(40, 218) Source(76, 32) + SourceIndex(0)
32>Emitted(40, 220) Source(78, 17) + SourceIndex(0)
33>Emitted(40, 221) Source(78, 18) + SourceIndex(0)
34>Emitted(40, 224) Source(78, 21) + SourceIndex(0)
35>Emitted(40, 225) Source(78, 22) + SourceIndex(0)
36>Emitted(40, 227) Source(78, 24) + SourceIndex(0)
37>Emitted(40, 228) Source(78, 25) + SourceIndex(0)
38>Emitted(40, 231) Source(78, 28) + SourceIndex(0)
39>Emitted(40, 232) Source(78, 29) + SourceIndex(0)
40>Emitted(40, 234) Source(78, 31) + SourceIndex(0)
41>Emitted(40, 235) Source(78, 32) + SourceIndex(0)
42>Emitted(40, 237) Source(78, 34) + SourceIndex(0)
43>Emitted(40, 239) Source(78, 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(41, 5) Source(79, 5) + SourceIndex(0)
2 >Emitted(41, 12) Source(79, 12) + SourceIndex(0)
3 >Emitted(41, 13) Source(79, 13) + SourceIndex(0)
4 >Emitted(41, 16) Source(79, 16) + SourceIndex(0)
5 >Emitted(41, 17) Source(79, 17) + SourceIndex(0)
6 >Emitted(41, 25) Source(79, 25) + SourceIndex(0)
7 >Emitted(41, 26) Source(79, 26) + SourceIndex(0)
8 >Emitted(41, 27) Source(79, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(42, 2) Source(80, 2) + SourceIndex(0)
---
>>>for (_y = getMultiRobot().skills, _z = _y === void 0 ? { primary: "none", secondary: "none" } : _y, _0 = _z.primary, primary = _0 === void 0 ? "primary" : _0, _1 = _z.secondary, secondary = _1 === void 0 ? "secondary" : _1, 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 ({
  >    
3 >     skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >          getMultiRobot
5 >                       ()
6 >                         
7 >                                
8 >                                  skills: {
  >                                          primary = "primary",
  >                                          secondary = "secondary"
  >                                      } = 
9 >                                                       { 
10>                                                         primary
11>                                                                : 
12>                                                                  "none"
13>                                                                        , 
14>                                                                          secondary
15>                                                                                   : 
16>                                                                                     "none"
17>                                                                                            }
18>                                                                                             
19>                                                                                                  
20>                                                                                                    primary = "primary"
21>                                                                                                                   
22>                                                                                                                     primary
23>                                                                                                                             = 
24>                                                                                                                                               "primary"
25>                                                                                                                                                        
26>                                                                                                                                                             ,
  >                                                                                                                                                                     
27>                                                                                                                                                               secondary = "secondary"
28>                                                                                                                                                                                
29>                                                                                                                                                                                  secondary
30>                                                                                                                                                                                            = 
31>                                                                                                                                                                                                              "secondary"
32>                                                                                                                                                                                                                         
33>                                                                                                                                                                                                                              
  >                                                                                                                                                                                                                                  } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                              } = getMultiRobot(), 
34>                                                                                                                                                                                                                                i
35>                                                                                                                                                                                                                                  = 
36>                                                                                                                                                                                                                                    0
37>                                                                                                                                                                                                                                     ; 
38>                                                                                                                                                                                                                                       i
39>                                                                                                                                                                                                                                         < 
40>                                                                                                                                                                                                                                           1
41>                                                                                                                                                                                                                                            ; 
42>                                                                                                                                                                                                                                              i
43>                                                                                                                                                                                                                                               ++
44>                                                                                                                                                                                                                                                 ) 
1->Emitted(43, 1) Source(81, 1) + SourceIndex(0)
2 >Emitted(43, 6) Source(82, 5) + SourceIndex(0)
3 >Emitted(43, 11) Source(86, 5) + SourceIndex(0)
4 >Emitted(43, 24) Source(86, 18) + SourceIndex(0)
5 >Emitted(43, 26) Source(86, 20) + SourceIndex(0)
6 >Emitted(43, 33) Source(85, 47) + SourceIndex(0)
7 >Emitted(43, 35) Source(82, 5) + SourceIndex(0)
8 >Emitted(43, 56) Source(85, 9) + SourceIndex(0)
9 >Emitted(43, 58) Source(85, 11) + SourceIndex(0)
10>Emitted(43, 65) Source(85, 18) + SourceIndex(0)
11>Emitted(43, 67) Source(85, 20) + SourceIndex(0)
12>Emitted(43, 73) Source(85, 26) + SourceIndex(0)
13>Emitted(43, 75) Source(85, 28) + SourceIndex(0)
14>Emitted(43, 84) Source(85, 37) + SourceIndex(0)
15>Emitted(43, 86) Source(85, 39) + SourceIndex(0)
16>Emitted(43, 92) Source(85, 45) + SourceIndex(0)
17>Emitted(43, 94) Source(85, 47) + SourceIndex(0)
18>Emitted(43, 99) Source(85, 47) + SourceIndex(0)
19>Emitted(43, 101) Source(83, 9) + SourceIndex(0)
20>Emitted(43, 116) Source(83, 28) + SourceIndex(0)
21>Emitted(43, 118) Source(83, 9) + SourceIndex(0)
22>Emitted(43, 125) Source(83, 16) + SourceIndex(0)
23>Emitted(43, 144) Source(83, 19) + SourceIndex(0)
24>Emitted(43, 153) Source(83, 28) + SourceIndex(0)
25>Emitted(43, 158) Source(83, 28) + SourceIndex(0)
26>Emitted(43, 160) Source(84, 9) + SourceIndex(0)
27>Emitted(43, 177) Source(84, 32) + SourceIndex(0)
28>Emitted(43, 179) Source(84, 9) + SourceIndex(0)
29>Emitted(43, 188) Source(84, 18) + SourceIndex(0)
30>Emitted(43, 207) Source(84, 21) + SourceIndex(0)
31>Emitted(43, 218) Source(84, 32) + SourceIndex(0)
32>Emitted(43, 223) Source(84, 32) + SourceIndex(0)
33>Emitted(43, 225) Source(86, 22) + SourceIndex(0)
34>Emitted(43, 226) Source(86, 23) + SourceIndex(0)
35>Emitted(43, 229) Source(86, 26) + SourceIndex(0)
36>Emitted(43, 230) Source(86, 27) + SourceIndex(0)
37>Emitted(43, 232) Source(86, 29) + SourceIndex(0)
38>Emitted(43, 233) Source(86, 30) + SourceIndex(0)
39>Emitted(43, 236) Source(86, 33) + SourceIndex(0)
40>Emitted(43, 237) Source(86, 34) + SourceIndex(0)
41>Emitted(43, 239) Source(86, 36) + SourceIndex(0)
42>Emitted(43, 240) Source(86, 37) + SourceIndex(0)
43>Emitted(43, 242) Source(86, 39) + SourceIndex(0)
44>Emitted(43, 244) Source(86, 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(44, 5) Source(87, 5) + SourceIndex(0)
2 >Emitted(44, 12) Source(87, 12) + SourceIndex(0)
3 >Emitted(44, 13) Source(87, 13) + SourceIndex(0)
4 >Emitted(44, 16) Source(87, 16) + SourceIndex(0)
5 >Emitted(44, 17) Source(87, 17) + SourceIndex(0)
6 >Emitted(44, 25) Source(87, 25) + SourceIndex(0)
7 >Emitted(44, 26) Source(87, 26) + SourceIndex(0)
8 >Emitted(44, 27) Source(87, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(45, 2) Source(88, 2) + SourceIndex(0)
---
>>>for (_2 = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }.skills, _3 = _2 === void 0 ? { primary: "none", secondary: "none" } : _2, _4 = _3.primary, primary = _4 === void 0 ? "primary" : _4, _5 = _3.secondary, secondary = _5 === void 0 ? "secondary" : _5,
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>                                                                                                                                                                                                                                                                                   ^^^^^
1->
  >
2 >for ({
  >    
3 >     skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = <MultiRobot>
4 >          { 
5 >            name
6 >                : 
7 >                  "trimmer"
8 >                           , 
9 >                             skills
10>                                   : 
11>                                     { 
12>                                       primary
13>                                              : 
14>                                                "trimming"
15>                                                          , 
16>                                                            secondary
17>                                                                     : 
18>                                                                       "edging"
19>                                                                                }
20>                                                                                  }
21>                                                                                   
22>                                                                                          
23>                                                                                            skills: {
  >                                                                                                    primary = "primary",
  >                                                                                                    secondary = "secondary"
  >                                                                                                } = 
24>                                                                                                                 { 
25>                                                                                                                   primary
26>                                                                                                                          : 
27>                                                                                                                            "none"
28>                                                                                                                                  , 
29>                                                                                                                                    secondary
30>                                                                                                                                             : 
31>                                                                                                                                               "none"
32>                                                                                                                                                      }
33>                                                                                                                                                       
34>                                                                                                                                                            
35>                                                                                                                                                              primary = "primary"
36>                                                                                                                                                                             
37>                                                                                                                                                                               primary
38>                                                                                                                                                                                       = 
39>                                                                                                                                                                                                         "primary"
40>                                                                                                                                                                                                                  
41>                                                                                                                                                                                                                       ,
  >                                                                                                                                                                                                                               
42>                                                                                                                                                                                                                         secondary = "secondary"
43>                                                                                                                                                                                                                                          
44>                                                                                                                                                                                                                                            secondary
45>                                                                                                                                                                                                                                                      = 
46>                                                                                                                                                                                                                                                                        "secondary"
47>                                                                                                                                                                                                                                                                                   
1->Emitted(46, 1) Source(89, 1) + SourceIndex(0)
2 >Emitted(46, 6) Source(90, 5) + SourceIndex(0)
3 >Emitted(46, 11) Source(94, 17) + SourceIndex(0)
4 >Emitted(46, 13) Source(94, 19) + SourceIndex(0)
5 >Emitted(46, 17) Source(94, 23) + SourceIndex(0)
6 >Emitted(46, 19) Source(94, 25) + SourceIndex(0)
7 >Emitted(46, 28) Source(94, 34) + SourceIndex(0)
8 >Emitted(46, 30) Source(94, 36) + SourceIndex(0)
9 >Emitted(46, 36) Source(94, 42) + SourceIndex(0)
10>Emitted(46, 38) Source(94, 44) + SourceIndex(0)
11>Emitted(46, 40) Source(94, 46) + SourceIndex(0)
12>Emitted(46, 47) Source(94, 53) + SourceIndex(0)
13>Emitted(46, 49) Source(94, 55) + SourceIndex(0)
14>Emitted(46, 59) Source(94, 65) + SourceIndex(0)
15>Emitted(46, 61) Source(94, 67) + SourceIndex(0)
16>Emitted(46, 70) Source(94, 76) + SourceIndex(0)
17>Emitted(46, 72) Source(94, 78) + SourceIndex(0)
18>Emitted(46, 80) Source(94, 86) + SourceIndex(0)
19>Emitted(46, 82) Source(94, 88) + SourceIndex(0)
20>Emitted(46, 84) Source(94, 90) + SourceIndex(0)
21>Emitted(46, 91) Source(93, 47) + SourceIndex(0)
22>Emitted(46, 93) Source(90, 5) + SourceIndex(0)
23>Emitted(46, 114) Source(93, 9) + SourceIndex(0)
24>Emitted(46, 116) Source(93, 11) + SourceIndex(0)
25>Emitted(46, 123) Source(93, 18) + SourceIndex(0)
26>Emitted(46, 125) Source(93, 20) + SourceIndex(0)
27>Emitted(46, 131) Source(93, 26) + SourceIndex(0)
28>Emitted(46, 133) Source(93, 28) + SourceIndex(0)
29>Emitted(46, 142) Source(93, 37) + SourceIndex(0)
30>Emitted(46, 144) Source(93, 39) + SourceIndex(0)
31>Emitted(46, 150) Source(93, 45) + SourceIndex(0)
32>Emitted(46, 152) Source(93, 47) + SourceIndex(0)
33>Emitted(46, 157) Source(93, 47) + SourceIndex(0)
34>Emitted(46, 159) Source(91, 9) + SourceIndex(0)
35>Emitted(46, 174) Source(91, 28) + SourceIndex(0)
36>Emitted(46, 176) Source(91, 9) + SourceIndex(0)
37>Emitted(46, 183) Source(91, 16) + SourceIndex(0)
38>Emitted(46, 202) Source(91, 19) + SourceIndex(0)
39>Emitted(46, 211) Source(91, 28) + SourceIndex(0)
40>Emitted(46, 216) Source(91, 28) + SourceIndex(0)
41>Emitted(46, 218) Source(92, 9) + SourceIndex(0)
42>Emitted(46, 235) Source(92, 32) + SourceIndex(0)
43>Emitted(46, 237) Source(92, 9) + SourceIndex(0)
44>Emitted(46, 246) Source(92, 18) + SourceIndex(0)
45>Emitted(46, 265) Source(92, 21) + SourceIndex(0)
46>Emitted(46, 276) Source(92, 32) + SourceIndex(0)
47>Emitted(46, 281) Source(92, 32) + SourceIndex(0)
---
>>>    i = 0; i < 1; i++) {
1 >^^^^
2 >    ^
3 >     ^^^
4 >        ^
5 >         ^^
6 >           ^
7 >            ^^^
8 >               ^
9 >                ^^
10>                  ^
11>                   ^^
12>                     ^^
13>                       ^^^^->
1 >
  >    } = { primary: "none", secondary: "none" }
  >} = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >    
2 >    i
3 >      = 
4 >        0
5 >         ; 
6 >           i
7 >             < 
8 >               1
9 >                ; 
10>                  i
11>                   ++
12>                     ) 
1 >Emitted(47, 5) Source(95, 5) + SourceIndex(0)
2 >Emitted(47, 6) Source(95, 6) + SourceIndex(0)
3 >Emitted(47, 9) Source(95, 9) + SourceIndex(0)
4 >Emitted(47, 10) Source(95, 10) + SourceIndex(0)
5 >Emitted(47, 12) Source(95, 12) + SourceIndex(0)
6 >Emitted(47, 13) Source(95, 13) + SourceIndex(0)
7 >Emitted(47, 16) Source(95, 16) + SourceIndex(0)
8 >Emitted(47, 17) Source(95, 17) + SourceIndex(0)
9 >Emitted(47, 19) Source(95, 19) + SourceIndex(0)
10>Emitted(47, 20) Source(95, 20) + SourceIndex(0)
11>Emitted(47, 22) Source(95, 22) + SourceIndex(0)
12>Emitted(47, 24) 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(48, 5) Source(96, 5) + SourceIndex(0)
2 >Emitted(48, 12) Source(96, 12) + SourceIndex(0)
3 >Emitted(48, 13) Source(96, 13) + SourceIndex(0)
4 >Emitted(48, 16) Source(96, 16) + SourceIndex(0)
5 >Emitted(48, 17) Source(96, 17) + SourceIndex(0)
6 >Emitted(48, 25) Source(96, 25) + SourceIndex(0)
7 >Emitted(48, 26) Source(96, 26) + SourceIndex(0)
8 >Emitted(48, 27) Source(96, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(49, 2) Source(97, 2) + SourceIndex(0)
---
>>>for (_6 = robot.name, nameA = _6 === void 0 ? "noName" : _6, _7 = robot.skill, skillA = _7 === void 0 ? "skill" : _7, 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 ({
3 >     name: nameA = "noName", skill: skillA = "skill" } = 
4 >          robot
5 >               
6 >                    
7 >                      nameA
8 >                            = 
9 >                                              "noName"
10>                                                      
11>                                                           , 
12>                                                             skill: skillA = "skill" } = 
13>                                                                  robot
14>                                                                       
15>                                                                             
16>                                                                               skillA
17>                                                                                      = 
18>                                                                                                        "skill"
19>                                                                                                               
20>                                                                                                                     } = robot, 
21>                                                                                                                      i
22>                                                                                                                        = 
23>                                                                                                                          0
24>                                                                                                                           ; 
25>                                                                                                                             i
26>                                                                                                                               < 
27>                                                                                                                                 1
28>                                                                                                                                  ; 
29>                                                                                                                                    i
30>                                                                                                                                     ++
31>                                                                                                                                       ) 
1->Emitted(50, 1) Source(100, 1) + SourceIndex(0)
2 >Emitted(50, 6) Source(100, 7) + SourceIndex(0)
3 >Emitted(50, 11) Source(100, 59) + SourceIndex(0)
4 >Emitted(50, 16) Source(100, 64) + SourceIndex(0)
5 >Emitted(50, 21) Source(100, 29) + SourceIndex(0)
6 >Emitted(50, 23) Source(100, 13) + SourceIndex(0)
7 >Emitted(50, 28) Source(100, 18) + SourceIndex(0)
8 >Emitted(50, 47) Source(100, 21) + SourceIndex(0)
9 >Emitted(50, 55) Source(100, 29) + SourceIndex(0)
10>Emitted(50, 60) Source(100, 29) + SourceIndex(0)
11>Emitted(50, 62) Source(100, 31) + SourceIndex(0)
12>Emitted(50, 67) Source(100, 59) + SourceIndex(0)
13>Emitted(50, 72) Source(100, 64) + SourceIndex(0)
14>Emitted(50, 78) Source(100, 54) + SourceIndex(0)
15>Emitted(50, 80) Source(100, 38) + SourceIndex(0)
16>Emitted(50, 86) Source(100, 44) + SourceIndex(0)
17>Emitted(50, 105) Source(100, 47) + SourceIndex(0)
18>Emitted(50, 112) Source(100, 54) + SourceIndex(0)
19>Emitted(50, 117) Source(100, 54) + SourceIndex(0)
20>Emitted(50, 119) Source(100, 66) + SourceIndex(0)
21>Emitted(50, 120) Source(100, 67) + SourceIndex(0)
22>Emitted(50, 123) Source(100, 70) + SourceIndex(0)
23>Emitted(50, 124) Source(100, 71) + SourceIndex(0)
24>Emitted(50, 126) Source(100, 73) + SourceIndex(0)
25>Emitted(50, 127) Source(100, 74) + SourceIndex(0)
26>Emitted(50, 130) Source(100, 77) + SourceIndex(0)
27>Emitted(50, 131) Source(100, 78) + SourceIndex(0)
28>Emitted(50, 133) Source(100, 80) + SourceIndex(0)
29>Emitted(50, 134) Source(100, 81) + SourceIndex(0)
30>Emitted(50, 136) Source(100, 83) + SourceIndex(0)
31>Emitted(50, 138) Source(100, 85) + 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(51, 5) Source(101, 5) + SourceIndex(0)
2 >Emitted(51, 12) Source(101, 12) + SourceIndex(0)
3 >Emitted(51, 13) Source(101, 13) + SourceIndex(0)
4 >Emitted(51, 16) Source(101, 16) + SourceIndex(0)
5 >Emitted(51, 17) Source(101, 17) + SourceIndex(0)
6 >Emitted(51, 22) Source(101, 22) + SourceIndex(0)
7 >Emitted(51, 23) Source(101, 23) + SourceIndex(0)
8 >Emitted(51, 24) Source(101, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(52, 2) Source(102, 2) + SourceIndex(0)
---
>>>for (_8 = getRobot(), _9 = _8.name, nameA = _9 === void 0 ? "noName" : _9, _10 = _8.skill, skillA = _10 === void 0 ? "skill" : _10, 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 (
3 >     {name: nameA = "noName", skill: skillA = "skill" } = 
4 >          getRobot
5 >                  ()
6 >                    
7 >                      name: nameA = "noName"
8 >                                  
9 >                                    nameA
10>                                          = 
11>                                                            "noName"
12>                                                                    
13>                                                                         , 
14>                                                                           skill: skillA = "skill"
15>                                                                                         
16>                                                                                           skillA
17>                                                                                                  = 
18>                                                                                                                     "skill"
19>                                                                                                                            
20>                                                                                                                                   } = getRobot(), 
21>                                                                                                                                    i
22>                                                                                                                                      = 
23>                                                                                                                                        0
24>                                                                                                                                         ; 
25>                                                                                                                                           i
26>                                                                                                                                             < 
27>                                                                                                                                               1
28>                                                                                                                                                ; 
29>                                                                                                                                                  i
30>                                                                                                                                                   ++
31>                                                                                                                                                     ) 
1->Emitted(53, 1) Source(103, 1) + SourceIndex(0)
2 >Emitted(53, 6) Source(103, 6) + SourceIndex(0)
3 >Emitted(53, 11) Source(103, 59) + SourceIndex(0)
4 >Emitted(53, 19) Source(103, 67) + SourceIndex(0)
5 >Emitted(53, 21) Source(103, 69) + SourceIndex(0)
6 >Emitted(53, 23) Source(103, 7) + SourceIndex(0)
7 >Emitted(53, 35) Source(103, 29) + SourceIndex(0)
8 >Emitted(53, 37) Source(103, 13) + SourceIndex(0)
9 >Emitted(53, 42) Source(103, 18) + SourceIndex(0)
10>Emitted(53, 61) Source(103, 21) + SourceIndex(0)
11>Emitted(53, 69) Source(103, 29) + SourceIndex(0)
12>Emitted(53, 74) Source(103, 29) + SourceIndex(0)
13>Emitted(53, 76) Source(103, 31) + SourceIndex(0)
14>Emitted(53, 90) Source(103, 54) + SourceIndex(0)
15>Emitted(53, 92) Source(103, 38) + SourceIndex(0)
16>Emitted(53, 98) Source(103, 44) + SourceIndex(0)
17>Emitted(53, 118) Source(103, 47) + SourceIndex(0)
18>Emitted(53, 125) Source(103, 54) + SourceIndex(0)
19>Emitted(53, 131) Source(103, 54) + SourceIndex(0)
20>Emitted(53, 133) Source(103, 71) + SourceIndex(0)
21>Emitted(53, 134) Source(103, 72) + SourceIndex(0)
22>Emitted(53, 137) Source(103, 75) + SourceIndex(0)
23>Emitted(53, 138) Source(103, 76) + SourceIndex(0)
24>Emitted(53, 140) Source(103, 78) + SourceIndex(0)
25>Emitted(53, 141) Source(103, 79) + SourceIndex(0)
26>Emitted(53, 144) Source(103, 82) + SourceIndex(0)
27>Emitted(53, 145) Source(103, 83) + SourceIndex(0)
28>Emitted(53, 147) Source(103, 85) + SourceIndex(0)
29>Emitted(53, 148) Source(103, 86) + SourceIndex(0)
30>Emitted(53, 150) Source(103, 88) + SourceIndex(0)
31>Emitted(53, 152) Source(103, 90) + 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(54, 5) Source(104, 5) + SourceIndex(0)
2 >Emitted(54, 12) Source(104, 12) + SourceIndex(0)
3 >Emitted(54, 13) Source(104, 13) + SourceIndex(0)
4 >Emitted(54, 16) Source(104, 16) + SourceIndex(0)
5 >Emitted(54, 17) Source(104, 17) + SourceIndex(0)
6 >Emitted(54, 22) Source(104, 22) + SourceIndex(0)
7 >Emitted(54, 23) Source(104, 23) + SourceIndex(0)
8 >Emitted(54, 24) Source(104, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(55, 2) Source(105, 2) + SourceIndex(0)
---
>>>for (_11 = { name: "trimmer", skill: "trimming" }, _12 = _11.name, nameA = _12 === void 0 ? "noName" : _12, _13 = _11.skill, skillA = _13 === void 0 ? "skill" : _13, 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>                                                                                                                                                                                       ^^
1->
  >
2 >for (
3 >     {name: nameA = "noName", skill: skillA = "skill" } = <Robot>
4 >           { 
5 >             name
6 >                 : 
7 >                   "trimmer"
8 >                            , 
9 >                              skill
10>                                   : 
11>                                     "trimming"
12>                                                }
13>                                                 
14>                                                   name: nameA = "noName"
15>                                                                 
16>                                                                   nameA
17>                                                                         = 
18>                                                                                            "noName"
19>                                                                                                    
20>                                                                                                          , 
21>                                                                                                            skill: skillA = "skill"
22>                                                                                                                           
23>                                                                                                                             skillA
24>                                                                                                                                    = 
25>                                                                                                                                                       "skill"
26>                                                                                                                                                              
27>                                                                                                                                                                     } = <Robot>{ name: "trimmer", skill: "trimming" }, 
28>                                                                                                                                                                      i
29>                                                                                                                                                                        = 
30>                                                                                                                                                                          0
31>                                                                                                                                                                           ; 
32>                                                                                                                                                                             i
33>                                                                                                                                                                               < 
34>                                                                                                                                                                                 1
35>                                                                                                                                                                                  ; 
36>                                                                                                                                                                                    i
37>                                                                                                                                                                                     ++
38>                                                                                                                                                                                       ) 
1->Emitted(56, 1) Source(106, 1) + SourceIndex(0)
2 >Emitted(56, 6) Source(106, 6) + SourceIndex(0)
3 >Emitted(56, 12) Source(106, 66) + SourceIndex(0)
4 >Emitted(56, 14) Source(106, 68) + SourceIndex(0)
5 >Emitted(56, 18) Source(106, 72) + SourceIndex(0)
6 >Emitted(56, 20) Source(106, 74) + SourceIndex(0)
7 >Emitted(56, 29) Source(106, 83) + SourceIndex(0)
8 >Emitted(56, 31) Source(106, 85) + SourceIndex(0)
9 >Emitted(56, 36) Source(106, 90) + SourceIndex(0)
10>Emitted(56, 38) Source(106, 92) + SourceIndex(0)
11>Emitted(56, 48) Source(106, 102) + SourceIndex(0)
12>Emitted(56, 50) Source(106, 104) + SourceIndex(0)
13>Emitted(56, 52) Source(106, 7) + SourceIndex(0)
14>Emitted(56, 66) Source(106, 29) + SourceIndex(0)
15>Emitted(56, 68) Source(106, 13) + SourceIndex(0)
16>Emitted(56, 73) Source(106, 18) + SourceIndex(0)
17>Emitted(56, 93) Source(106, 21) + SourceIndex(0)
18>Emitted(56, 101) Source(106, 29) + SourceIndex(0)
19>Emitted(56, 107) Source(106, 29) + SourceIndex(0)
20>Emitted(56, 109) Source(106, 31) + SourceIndex(0)
21>Emitted(56, 124) Source(106, 54) + SourceIndex(0)
22>Emitted(56, 126) Source(106, 38) + SourceIndex(0)
23>Emitted(56, 132) Source(106, 44) + SourceIndex(0)
24>Emitted(56, 152) Source(106, 47) + SourceIndex(0)
25>Emitted(56, 159) Source(106, 54) + SourceIndex(0)
26>Emitted(56, 165) Source(106, 54) + SourceIndex(0)
27>Emitted(56, 167) Source(106, 106) + SourceIndex(0)
28>Emitted(56, 168) Source(106, 107) + SourceIndex(0)
29>Emitted(56, 171) Source(106, 110) + SourceIndex(0)
30>Emitted(56, 172) Source(106, 111) + SourceIndex(0)
31>Emitted(56, 174) Source(106, 113) + SourceIndex(0)
32>Emitted(56, 175) Source(106, 114) + SourceIndex(0)
33>Emitted(56, 178) Source(106, 117) + SourceIndex(0)
34>Emitted(56, 179) Source(106, 118) + SourceIndex(0)
35>Emitted(56, 181) Source(106, 120) + SourceIndex(0)
36>Emitted(56, 182) Source(106, 121) + SourceIndex(0)
37>Emitted(56, 184) Source(106, 123) + SourceIndex(0)
38>Emitted(56, 186) Source(106, 125) + 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(57, 5) Source(107, 5) + SourceIndex(0)
2 >Emitted(57, 12) Source(107, 12) + SourceIndex(0)
3 >Emitted(57, 13) Source(107, 13) + SourceIndex(0)
4 >Emitted(57, 16) Source(107, 16) + SourceIndex(0)
5 >Emitted(57, 17) Source(107, 17) + SourceIndex(0)
6 >Emitted(57, 22) Source(107, 22) + SourceIndex(0)
7 >Emitted(57, 23) Source(107, 23) + SourceIndex(0)
8 >Emitted(57, 24) Source(107, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(58, 2) Source(108, 2) + SourceIndex(0)
---
>>>for (_14 = multiRobot.name, nameA = _14 === void 0 ? "noName" : _14, _15 = multiRobot.skills, _16 = _15 === void 0 ? { primary: "none", secondary: "none" } : _15, _17 = _16.primary, primaryA = _17 === void 0 ? "primary" : _17, _18 = _16.secondary, secondaryA = _18 === void 0 ? "secondary" : _18, 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>                                                                                                                                                                                                                                                                                                                          ^^
1->
  >
2 >for ({
  >    
3 >     name: nameA = "noName",
  >         skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >           multiRobot
5 >                     
6 >                          
7 >                            nameA
8 >                                  = 
9 >                                                     "noName"
10>                                                             
11>                                                                   ,
  >                                                                       
12>                                                                     skills: {
  >                                                                             primary: primaryA = "primary",
  >                                                                             secondary: secondaryA = "secondary"
  >                                                                         } = { primary: "none", secondary: "none" }
  >                                                                     } = 
13>                                                                           multiRobot
14>                                                                                     
15>                                                                                            
16>                                                                                              skills: {
  >                                                                                                      primary: primaryA = "primary",
  >                                                                                                      secondary: secondaryA = "secondary"
  >                                                                                                  } = 
17>                                                                                                                     { 
18>                                                                                                                       primary
19>                                                                                                                              : 
20>                                                                                                                                "none"
21>                                                                                                                                      , 
22>                                                                                                                                        secondary
23>                                                                                                                                                 : 
24>                                                                                                                                                   "none"
25>                                                                                                                                                          }
26>                                                                                                                                                           
27>                                                                                                                                                                 
28>                                                                                                                                                                   primary: primaryA = "primary"
29>                                                                                                                                                                                    
30>                                                                                                                                                                                      primaryA
31>                                                                                                                                                                                               = 
32>                                                                                                                                                                                                                  "primary"
33>                                                                                                                                                                                                                           
34>                                                                                                                                                                                                                                 ,
  >                                                                                                                                                                                                                                         
35>                                                                                                                                                                                                                                   secondary: secondaryA = "secondary"
36>                                                                                                                                                                                                                                                      
37>                                                                                                                                                                                                                                                        secondaryA
38>                                                                                                                                                                                                                                                                   = 
39>                                                                                                                                                                                                                                                                                      "secondary"
40>                                                                                                                                                                                                                                                                                                 
41>                                                                                                                                                                                                                                                                                                       
  >                                                                                                                                                                                                                                                                                                           } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                       } = multiRobot, 
42>                                                                                                                                                                                                                                                                                                         i
43>                                                                                                                                                                                                                                                                                                           = 
44>                                                                                                                                                                                                                                                                                                             0
45>                                                                                                                                                                                                                                                                                                              ; 
46>                                                                                                                                                                                                                                                                                                                i
47>                                                                                                                                                                                                                                                                                                                  < 
48>                                                                                                                                                                                                                                                                                                                    1
49>                                                                                                                                                                                                                                                                                                                     ; 
50>                                                                                                                                                                                                                                                                                                                       i
51>                                                                                                                                                                                                                                                                                                                        ++
52>                                                                                                                                                                                                                                                                                                                          ) 
1->Emitted(59, 1) Source(109, 1) + SourceIndex(0)
2 >Emitted(59, 6) Source(110, 5) + SourceIndex(0)
3 >Emitted(59, 12) Source(115, 5) + SourceIndex(0)
4 >Emitted(59, 22) Source(115, 15) + SourceIndex(0)
5 >Emitted(59, 27) Source(110, 27) + SourceIndex(0)
6 >Emitted(59, 29) Source(110, 11) + SourceIndex(0)
7 >Emitted(59, 34) Source(110, 16) + SourceIndex(0)
8 >Emitted(59, 54) Source(110, 19) + SourceIndex(0)
9 >Emitted(59, 62) Source(110, 27) + SourceIndex(0)
10>Emitted(59, 68) Source(110, 27) + SourceIndex(0)
11>Emitted(59, 70) Source(111, 5) + SourceIndex(0)
12>Emitted(59, 76) Source(115, 5) + SourceIndex(0)
13>Emitted(59, 86) Source(115, 15) + SourceIndex(0)
14>Emitted(59, 93) Source(114, 47) + SourceIndex(0)
15>Emitted(59, 95) Source(111, 5) + SourceIndex(0)
16>Emitted(59, 118) Source(114, 9) + SourceIndex(0)
17>Emitted(59, 120) Source(114, 11) + SourceIndex(0)
18>Emitted(59, 127) Source(114, 18) + SourceIndex(0)
19>Emitted(59, 129) Source(114, 20) + SourceIndex(0)
20>Emitted(59, 135) Source(114, 26) + SourceIndex(0)
21>Emitted(59, 137) Source(114, 28) + SourceIndex(0)
22>Emitted(59, 146) Source(114, 37) + SourceIndex(0)
23>Emitted(59, 148) Source(114, 39) + SourceIndex(0)
24>Emitted(59, 154) Source(114, 45) + SourceIndex(0)
25>Emitted(59, 156) Source(114, 47) + SourceIndex(0)
26>Emitted(59, 162) Source(114, 47) + SourceIndex(0)
27>Emitted(59, 164) Source(112, 9) + SourceIndex(0)
28>Emitted(59, 181) Source(112, 38) + SourceIndex(0)
29>Emitted(59, 183) Source(112, 18) + SourceIndex(0)
30>Emitted(59, 191) Source(112, 26) + SourceIndex(0)
31>Emitted(59, 211) Source(112, 29) + SourceIndex(0)
32>Emitted(59, 220) Source(112, 38) + SourceIndex(0)
33>Emitted(59, 226) Source(112, 38) + SourceIndex(0)
34>Emitted(59, 228) Source(113, 9) + SourceIndex(0)
35>Emitted(59, 247) Source(113, 44) + SourceIndex(0)
36>Emitted(59, 249) Source(113, 20) + SourceIndex(0)
37>Emitted(59, 259) Source(113, 30) + SourceIndex(0)
38>Emitted(59, 279) Source(113, 33) + SourceIndex(0)
39>Emitted(59, 290) Source(113, 44) + SourceIndex(0)
40>Emitted(59, 296) Source(113, 44) + SourceIndex(0)
41>Emitted(59, 298) Source(115, 17) + SourceIndex(0)
42>Emitted(59, 299) Source(115, 18) + SourceIndex(0)
43>Emitted(59, 302) Source(115, 21) + SourceIndex(0)
44>Emitted(59, 303) Source(115, 22) + SourceIndex(0)
45>Emitted(59, 305) Source(115, 24) + SourceIndex(0)
46>Emitted(59, 306) Source(115, 25) + SourceIndex(0)
47>Emitted(59, 309) Source(115, 28) + SourceIndex(0)
48>Emitted(59, 310) Source(115, 29) + SourceIndex(0)
49>Emitted(59, 312) Source(115, 31) + SourceIndex(0)
50>Emitted(59, 313) Source(115, 32) + SourceIndex(0)
51>Emitted(59, 315) Source(115, 34) + SourceIndex(0)
52>Emitted(59, 317) Source(115, 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(60, 5) Source(116, 5) + SourceIndex(0)
2 >Emitted(60, 12) Source(116, 12) + SourceIndex(0)
3 >Emitted(60, 13) Source(116, 13) + SourceIndex(0)
4 >Emitted(60, 16) Source(116, 16) + SourceIndex(0)
5 >Emitted(60, 17) Source(116, 17) + SourceIndex(0)
6 >Emitted(60, 25) Source(116, 25) + SourceIndex(0)
7 >Emitted(60, 26) Source(116, 26) + SourceIndex(0)
8 >Emitted(60, 27) Source(116, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(61, 2) Source(117, 2) + SourceIndex(0)
---
>>>for (_19 = getMultiRobot(), _20 = _19.name, nameA = _20 === void 0 ? "noName" : _20, _21 = _19.skills, _22 = _21 === void 0 ? { primary: "none", secondary: "none" } : _21, _23 = _22.primary, primaryA = _23 === void 0 ? "primary" : _23, _24 = _22.secondary, secondaryA = _24 === void 0 ? "secondary" : _24, 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>                                                                                                                                                                                                                                                                                                                                   ^^
1->
  >
2 >for (
3 >     {
  >         name: nameA = "noName",
  >         skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >           getMultiRobot
5 >                        ()
6 >                          
7 >                            name: nameA = "noName"
8 >                                          
9 >                                            nameA
10>                                                  = 
11>                                                                     "noName"
12>                                                                             
13>                                                                                   ,
  >                                                                                       
14>                                                                                     skills: {
  >                                                                                             primary: primaryA = "primary",
  >                                                                                             secondary: secondaryA = "secondary"
  >                                                                                         } = { primary: "none", secondary: "none" }
15>                                                                                                     
16>                                                                                                       skills: {
  >                                                                                                               primary: primaryA = "primary",
  >                                                                                                               secondary: secondaryA = "secondary"
  >                                                                                                           } = 
17>                                                                                                                              { 
18>                                                                                                                                primary
19>                                                                                                                                       : 
20>                                                                                                                                         "none"
21>                                                                                                                                               , 
22>                                                                                                                                                 secondary
23>                                                                                                                                                          : 
24>                                                                                                                                                            "none"
25>                                                                                                                                                                   }
26>                                                                                                                                                                    
27>                                                                                                                                                                          
28>                                                                                                                                                                            primary: primaryA = "primary"
29>                                                                                                                                                                                             
30>                                                                                                                                                                                               primaryA
31>                                                                                                                                                                                                        = 
32>                                                                                                                                                                                                                           "primary"
33>                                                                                                                                                                                                                                    
34>                                                                                                                                                                                                                                          ,
  >                                                                                                                                                                                                                                                  
35>                                                                                                                                                                                                                                            secondary: secondaryA = "secondary"
36>                                                                                                                                                                                                                                                               
37>                                                                                                                                                                                                                                                                 secondaryA
38>                                                                                                                                                                                                                                                                            = 
39>                                                                                                                                                                                                                                                                                               "secondary"
40>                                                                                                                                                                                                                                                                                                          
41>                                                                                                                                                                                                                                                                                                                
  >                                                                                                                                                                                                                                                                                                                    } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                                } = getMultiRobot(), 
42>                                                                                                                                                                                                                                                                                                                  i
43>                                                                                                                                                                                                                                                                                                                    = 
44>                                                                                                                                                                                                                                                                                                                      0
45>                                                                                                                                                                                                                                                                                                                       ; 
46>                                                                                                                                                                                                                                                                                                                         i
47>                                                                                                                                                                                                                                                                                                                           < 
48>                                                                                                                                                                                                                                                                                                                             1
49>                                                                                                                                                                                                                                                                                                                              ; 
50>                                                                                                                                                                                                                                                                                                                                i
51>                                                                                                                                                                                                                                                                                                                                 ++
52>                                                                                                                                                                                                                                                                                                                                   ) 
1->Emitted(62, 1) Source(118, 1) + SourceIndex(0)
2 >Emitted(62, 6) Source(118, 6) + SourceIndex(0)
3 >Emitted(62, 12) Source(124, 5) + SourceIndex(0)
4 >Emitted(62, 25) Source(124, 18) + SourceIndex(0)
5 >Emitted(62, 27) Source(124, 20) + SourceIndex(0)
6 >Emitted(62, 29) Source(119, 5) + SourceIndex(0)
7 >Emitted(62, 43) Source(119, 27) + SourceIndex(0)
8 >Emitted(62, 45) Source(119, 11) + SourceIndex(0)
9 >Emitted(62, 50) Source(119, 16) + SourceIndex(0)
10>Emitted(62, 70) Source(119, 19) + SourceIndex(0)
11>Emitted(62, 78) Source(119, 27) + SourceIndex(0)
12>Emitted(62, 84) Source(119, 27) + SourceIndex(0)
13>Emitted(62, 86) Source(120, 5) + SourceIndex(0)
14>Emitted(62, 102) Source(123, 47) + SourceIndex(0)
15>Emitted(62, 104) Source(120, 5) + SourceIndex(0)
16>Emitted(62, 127) Source(123, 9) + SourceIndex(0)
17>Emitted(62, 129) Source(123, 11) + SourceIndex(0)
18>Emitted(62, 136) Source(123, 18) + SourceIndex(0)
19>Emitted(62, 138) Source(123, 20) + SourceIndex(0)
20>Emitted(62, 144) Source(123, 26) + SourceIndex(0)
21>Emitted(62, 146) Source(123, 28) + SourceIndex(0)
22>Emitted(62, 155) Source(123, 37) + SourceIndex(0)
23>Emitted(62, 157) Source(123, 39) + SourceIndex(0)
24>Emitted(62, 163) Source(123, 45) + SourceIndex(0)
25>Emitted(62, 165) Source(123, 47) + SourceIndex(0)
26>Emitted(62, 171) Source(123, 47) + SourceIndex(0)
27>Emitted(62, 173) Source(121, 9) + SourceIndex(0)
28>Emitted(62, 190) Source(121, 38) + SourceIndex(0)
29>Emitted(62, 192) Source(121, 18) + SourceIndex(0)
30>Emitted(62, 200) Source(121, 26) + SourceIndex(0)
31>Emitted(62, 220) Source(121, 29) + SourceIndex(0)
32>Emitted(62, 229) Source(121, 38) + SourceIndex(0)
33>Emitted(62, 235) Source(121, 38) + SourceIndex(0)
34>Emitted(62, 237) Source(122, 9) + SourceIndex(0)
35>Emitted(62, 256) Source(122, 44) + SourceIndex(0)
36>Emitted(62, 258) Source(122, 20) + SourceIndex(0)
37>Emitted(62, 268) Source(122, 30) + SourceIndex(0)
38>Emitted(62, 288) Source(122, 33) + SourceIndex(0)
39>Emitted(62, 299) Source(122, 44) + SourceIndex(0)
40>Emitted(62, 305) Source(122, 44) + SourceIndex(0)
41>Emitted(62, 307) Source(124, 22) + SourceIndex(0)
42>Emitted(62, 308) Source(124, 23) + SourceIndex(0)
43>Emitted(62, 311) Source(124, 26) + SourceIndex(0)
44>Emitted(62, 312) Source(124, 27) + SourceIndex(0)
45>Emitted(62, 314) Source(124, 29) + SourceIndex(0)
46>Emitted(62, 315) Source(124, 30) + SourceIndex(0)
47>Emitted(62, 318) Source(124, 33) + SourceIndex(0)
48>Emitted(62, 319) Source(124, 34) + SourceIndex(0)
49>Emitted(62, 321) Source(124, 36) + SourceIndex(0)
50>Emitted(62, 322) Source(124, 37) + SourceIndex(0)
51>Emitted(62, 324) Source(124, 39) + SourceIndex(0)
52>Emitted(62, 326) Source(124, 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(63, 5) Source(125, 5) + SourceIndex(0)
2 >Emitted(63, 12) Source(125, 12) + SourceIndex(0)
3 >Emitted(63, 13) Source(125, 13) + SourceIndex(0)
4 >Emitted(63, 16) Source(125, 16) + SourceIndex(0)
5 >Emitted(63, 17) Source(125, 17) + SourceIndex(0)
6 >Emitted(63, 25) Source(125, 25) + SourceIndex(0)
7 >Emitted(63, 26) Source(125, 26) + SourceIndex(0)
8 >Emitted(63, 27) Source(125, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(64, 2) Source(126, 2) + SourceIndex(0)
---
>>>for (_25 = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, _26 = _25.name, nameA = _26 === void 0 ? "noName" : _26, _27 = _25.skills, _28 = _27 === void 0 ? { primary: "none", secondary: "none" } : _27, _29 = _28.primary, primaryA = _29 === void 0 ? "primary" : _29, _30 = _28.secondary, secondaryA = _30 === void 0 ? "secondary" : _30,
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>                                                                                                                                                                                                                                                                                                                                                                    ^^^^^^
1->
  >
2 >for (
3 >     {
  >         name: nameA = "noName",
  >         skills: {
  >             primary: primaryA = "primary",
  >             secondary: secondaryA = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = <MultiRobot>
4 >           { 
5 >             name
6 >                 : 
7 >                   "trimmer"
8 >                            , 
9 >                              skills
10>                                    : 
11>                                      { 
12>                                        primary
13>                                               : 
14>                                                 "trimming"
15>                                                           , 
16>                                                             secondary
17>                                                                      : 
18>                                                                        "edging"
19>                                                                                 }
20>                                                                                   }
21>                                                                                    
22>                                                                                      name: nameA = "noName"
23>                                                                                                    
24>                                                                                                      nameA
25>                                                                                                            = 
26>                                                                                                                               "noName"
27>                                                                                                                                       
28>                                                                                                                                             ,
  >                                                                                                                                                 
29>                                                                                                                                               skills: {
  >                                                                                                                                                       primary: primaryA = "primary",
  >                                                                                                                                                       secondary: secondaryA = "secondary"
  >                                                                                                                                                   } = { primary: "none", secondary: "none" }
30>                                                                                                                                                               
31>                                                                                                                                                                 skills: {
  >                                                                                                                                                                         primary: primaryA = "primary",
  >                                                                                                                                                                         secondary: secondaryA = "secondary"
  >                                                                                                                                                                     } = 
32>                                                                                                                                                                                        { 
33>                                                                                                                                                                                          primary
34>                                                                                                                                                                                                 : 
35>                                                                                                                                                                                                   "none"
36>                                                                                                                                                                                                         , 
37>                                                                                                                                                                                                           secondary
38>                                                                                                                                                                                                                    : 
39>                                                                                                                                                                                                                      "none"
40>                                                                                                                                                                                                                             }
41>                                                                                                                                                                                                                              
42>                                                                                                                                                                                                                                    
43>                                                                                                                                                                                                                                      primary: primaryA = "primary"
44>                                                                                                                                                                                                                                                       
45>                                                                                                                                                                                                                                                         primaryA
46>                                                                                                                                                                                                                                                                  = 
47>                                                                                                                                                                                                                                                                                     "primary"
48>                                                                                                                                                                                                                                                                                              
49>                                                                                                                                                                                                                                                                                                    ,
  >                                                                                                                                                                                                                                                                                                            
50>                                                                                                                                                                                                                                                                                                      secondary: secondaryA = "secondary"
51>                                                                                                                                                                                                                                                                                                                         
52>                                                                                                                                                                                                                                                                                                                           secondaryA
53>                                                                                                                                                                                                                                                                                                                                      = 
54>                                                                                                                                                                                                                                                                                                                                                         "secondary"
55>                                                                                                                                                                                                                                                                                                                                                                    
1->Emitted(65, 1) Source(127, 1) + SourceIndex(0)
2 >Emitted(65, 6) Source(127, 6) + SourceIndex(0)
3 >Emitted(65, 12) Source(133, 17) + SourceIndex(0)
4 >Emitted(65, 14) Source(133, 19) + SourceIndex(0)
5 >Emitted(65, 18) Source(133, 23) + SourceIndex(0)
6 >Emitted(65, 20) Source(133, 25) + SourceIndex(0)
7 >Emitted(65, 29) Source(133, 34) + SourceIndex(0)
8 >Emitted(65, 31) Source(133, 36) + SourceIndex(0)
9 >Emitted(65, 37) Source(133, 42) + SourceIndex(0)
10>Emitted(65, 39) Source(133, 44) + SourceIndex(0)
11>Emitted(65, 41) Source(133, 46) + SourceIndex(0)
12>Emitted(65, 48) Source(133, 53) + SourceIndex(0)
13>Emitted(65, 50) Source(133, 55) + SourceIndex(0)
14>Emitted(65, 60) Source(133, 65) + SourceIndex(0)
15>Emitted(65, 62) Source(133, 67) + SourceIndex(0)
16>Emitted(65, 71) Source(133, 76) + SourceIndex(0)
17>Emitted(65, 73) Source(133, 78) + SourceIndex(0)
18>Emitted(65, 81) Source(133, 86) + SourceIndex(0)
19>Emitted(65, 83) Source(133, 88) + SourceIndex(0)
20>Emitted(65, 85) Source(133, 90) + SourceIndex(0)
21>Emitted(65, 87) Source(128, 5) + SourceIndex(0)
22>Emitted(65, 101) Source(128, 27) + SourceIndex(0)
23>Emitted(65, 103) Source(128, 11) + SourceIndex(0)
24>Emitted(65, 108) Source(128, 16) + SourceIndex(0)
25>Emitted(65, 128) Source(128, 19) + SourceIndex(0)
26>Emitted(65, 136) Source(128, 27) + SourceIndex(0)
27>Emitted(65, 142) Source(128, 27) + SourceIndex(0)
28>Emitted(65, 144) Source(129, 5) + SourceIndex(0)
29>Emitted(65, 160) Source(132, 47) + SourceIndex(0)
30>Emitted(65, 162) Source(129, 5) + SourceIndex(0)
31>Emitted(65, 185) Source(132, 9) + SourceIndex(0)
32>Emitted(65, 187) Source(132, 11) + SourceIndex(0)
33>Emitted(65, 194) Source(132, 18) + SourceIndex(0)
34>Emitted(65, 196) Source(132, 20) + SourceIndex(0)
35>Emitted(65, 202) Source(132, 26) + SourceIndex(0)
36>Emitted(65, 204) Source(132, 28) + SourceIndex(0)
37>Emitted(65, 213) Source(132, 37) + SourceIndex(0)
38>Emitted(65, 215) Source(132, 39) + SourceIndex(0)
39>Emitted(65, 221) Source(132, 45) + SourceIndex(0)
40>Emitted(65, 223) Source(132, 47) + SourceIndex(0)
41>Emitted(65, 229) Source(132, 47) + SourceIndex(0)
42>Emitted(65, 231) Source(130, 9) + SourceIndex(0)
43>Emitted(65, 248) Source(130, 38) + SourceIndex(0)
44>Emitted(65, 250) Source(130, 18) + SourceIndex(0)
45>Emitted(65, 258) Source(130, 26) + SourceIndex(0)
46>Emitted(65, 278) Source(130, 29) + SourceIndex(0)
47>Emitted(65, 287) Source(130, 38) + SourceIndex(0)
48>Emitted(65, 293) Source(130, 38) + SourceIndex(0)
49>Emitted(65, 295) Source(131, 9) + SourceIndex(0)
50>Emitted(65, 314) Source(131, 44) + SourceIndex(0)
51>Emitted(65, 316) Source(131, 20) + SourceIndex(0)
52>Emitted(65, 326) Source(131, 30) + SourceIndex(0)
53>Emitted(65, 346) Source(131, 33) + SourceIndex(0)
54>Emitted(65, 357) Source(131, 44) + SourceIndex(0)
55>Emitted(65, 363) Source(131, 44) + SourceIndex(0)
---
>>>    i = 0; i < 1; i++) {
1 >^^^^
2 >    ^
3 >     ^^^
4 >        ^
5 >         ^^
6 >           ^
7 >            ^^^
8 >               ^
9 >                ^^
10>                  ^
11>                   ^^
12>                     ^^
13>                       ^^^^->
1 >
  >    } = { primary: "none", secondary: "none" }
  >} = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >    
2 >    i
3 >      = 
4 >        0
5 >         ; 
6 >           i
7 >             < 
8 >               1
9 >                ; 
10>                  i
11>                   ++
12>                     ) 
1 >Emitted(66, 5) Source(134, 5) + SourceIndex(0)
2 >Emitted(66, 6) Source(134, 6) + SourceIndex(0)
3 >Emitted(66, 9) Source(134, 9) + SourceIndex(0)
4 >Emitted(66, 10) Source(134, 10) + SourceIndex(0)
5 >Emitted(66, 12) Source(134, 12) + SourceIndex(0)
6 >Emitted(66, 13) Source(134, 13) + SourceIndex(0)
7 >Emitted(66, 16) Source(134, 16) + SourceIndex(0)
8 >Emitted(66, 17) Source(134, 17) + SourceIndex(0)
9 >Emitted(66, 19) Source(134, 19) + SourceIndex(0)
10>Emitted(66, 20) Source(134, 20) + SourceIndex(0)
11>Emitted(66, 22) Source(134, 22) + SourceIndex(0)
12>Emitted(66, 24) Source(134, 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(67, 5) Source(135, 5) + SourceIndex(0)
2 >Emitted(67, 12) Source(135, 12) + SourceIndex(0)
3 >Emitted(67, 13) Source(135, 13) + SourceIndex(0)
4 >Emitted(67, 16) Source(135, 16) + SourceIndex(0)
5 >Emitted(67, 17) Source(135, 17) + SourceIndex(0)
6 >Emitted(67, 25) Source(135, 25) + SourceIndex(0)
7 >Emitted(67, 26) Source(135, 26) + SourceIndex(0)
8 >Emitted(67, 27) Source(135, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(68, 2) Source(136, 2) + SourceIndex(0)
---
>>>for (_31 = robot.name, name = _31 === void 0 ? "noName" : _31, _32 = robot.skill, skill = _32 === void 0 ? "skill" : _32, 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 ({ 
3 >     name = "noName", skill = "skill" } = 
4 >           robot
5 >                
6 >                     
7 >                       name
8 >                            = 
9 >                                               "noName"
10>                                                       
11>                                                             , 
12>                                                               skill = "skill" } = 
13>                                                                     robot
14>                                                                          
15>                                                                                
16>                                                                                  skill
17>                                                                                        = 
18>                                                                                                           "skill"
19>                                                                                                                  
20>                                                                                                                         } = robot, 
21>                                                                                                                          i
22>                                                                                                                            = 
23>                                                                                                                              0
24>                                                                                                                               ; 
25>                                                                                                                                 i
26>                                                                                                                                   < 
27>                                                                                                                                     1
28>                                                                                                                                      ; 
29>                                                                                                                                        i
30>                                                                                                                                         ++
31>                                                                                                                                           ) 
1->Emitted(69, 1) Source(138, 1) + SourceIndex(0)
2 >Emitted(69, 6) Source(138, 8) + SourceIndex(0)
3 >Emitted(69, 12) Source(138, 45) + SourceIndex(0)
4 >Emitted(69, 17) Source(138, 50) + SourceIndex(0)
5 >Emitted(69, 22) Source(138, 23) + SourceIndex(0)
6 >Emitted(69, 24) Source(138, 8) + SourceIndex(0)
7 >Emitted(69, 28) Source(138, 12) + SourceIndex(0)
8 >Emitted(69, 48) Source(138, 15) + SourceIndex(0)
9 >Emitted(69, 56) Source(138, 23) + SourceIndex(0)
10>Emitted(69, 62) Source(138, 23) + SourceIndex(0)
11>Emitted(69, 64) Source(138, 25) + SourceIndex(0)
12>Emitted(69, 70) Source(138, 45) + SourceIndex(0)
13>Emitted(69, 75) Source(138, 50) + SourceIndex(0)
14>Emitted(69, 81) Source(138, 40) + SourceIndex(0)
15>Emitted(69, 83) Source(138, 25) + SourceIndex(0)
16>Emitted(69, 88) Source(138, 30) + SourceIndex(0)
17>Emitted(69, 108) Source(138, 33) + SourceIndex(0)
18>Emitted(69, 115) Source(138, 40) + SourceIndex(0)
19>Emitted(69, 121) Source(138, 40) + SourceIndex(0)
20>Emitted(69, 123) Source(138, 52) + SourceIndex(0)
21>Emitted(69, 124) Source(138, 53) + SourceIndex(0)
22>Emitted(69, 127) Source(138, 56) + SourceIndex(0)
23>Emitted(69, 128) Source(138, 57) + SourceIndex(0)
24>Emitted(69, 130) Source(138, 59) + SourceIndex(0)
25>Emitted(69, 131) Source(138, 60) + SourceIndex(0)
26>Emitted(69, 134) Source(138, 63) + SourceIndex(0)
27>Emitted(69, 135) Source(138, 64) + SourceIndex(0)
28>Emitted(69, 137) Source(138, 66) + SourceIndex(0)
29>Emitted(69, 138) Source(138, 67) + SourceIndex(0)
30>Emitted(69, 140) Source(138, 69) + SourceIndex(0)
31>Emitted(69, 142) Source(138, 71) + 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(70, 5) Source(139, 5) + SourceIndex(0)
2 >Emitted(70, 12) Source(139, 12) + SourceIndex(0)
3 >Emitted(70, 13) Source(139, 13) + SourceIndex(0)
4 >Emitted(70, 16) Source(139, 16) + SourceIndex(0)
5 >Emitted(70, 17) Source(139, 17) + SourceIndex(0)
6 >Emitted(70, 22) Source(139, 22) + SourceIndex(0)
7 >Emitted(70, 23) Source(139, 23) + SourceIndex(0)
8 >Emitted(70, 24) Source(139, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(71, 2) Source(140, 2) + SourceIndex(0)
---
>>>for (_33 = getRobot(), _34 = _33.name, name = _34 === void 0 ? "noName" : _34, _35 = _33.skill, skill = _35 === void 0 ? "skill" : _35, 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 (
3 >     { name = "noName", skill = "skill" } = 
4 >           getRobot
5 >                   ()
6 >                     
7 >                       name = "noName"
8 >                                     
9 >                                       name
10>                                            = 
11>                                                               "noName"
12>                                                                       
13>                                                                             , 
14>                                                                               skill = "skill"
15>                                                                                              
16>                                                                                                skill
17>                                                                                                      = 
18>                                                                                                                         "skill"
19>                                                                                                                                
20>                                                                                                                                       } = getRobot(), 
21>                                                                                                                                        i
22>                                                                                                                                          = 
23>                                                                                                                                            0
24>                                                                                                                                             ; 
25>                                                                                                                                               i
26>                                                                                                                                                 < 
27>                                                                                                                                                   1
28>                                                                                                                                                    ; 
29>                                                                                                                                                      i
30>                                                                                                                                                       ++
31>                                                                                                                                                         ) 
1->Emitted(72, 1) Source(141, 1) + SourceIndex(0)
2 >Emitted(72, 6) Source(141, 6) + SourceIndex(0)
3 >Emitted(72, 12) Source(141, 45) + SourceIndex(0)
4 >Emitted(72, 20) Source(141, 53) + SourceIndex(0)
5 >Emitted(72, 22) Source(141, 55) + SourceIndex(0)
6 >Emitted(72, 24) Source(141, 8) + SourceIndex(0)
7 >Emitted(72, 38) Source(141, 23) + SourceIndex(0)
8 >Emitted(72, 40) Source(141, 8) + SourceIndex(0)
9 >Emitted(72, 44) Source(141, 12) + SourceIndex(0)
10>Emitted(72, 64) Source(141, 15) + SourceIndex(0)
11>Emitted(72, 72) Source(141, 23) + SourceIndex(0)
12>Emitted(72, 78) Source(141, 23) + SourceIndex(0)
13>Emitted(72, 80) Source(141, 25) + SourceIndex(0)
14>Emitted(72, 95) Source(141, 40) + SourceIndex(0)
15>Emitted(72, 97) Source(141, 25) + SourceIndex(0)
16>Emitted(72, 102) Source(141, 30) + SourceIndex(0)
17>Emitted(72, 122) Source(141, 33) + SourceIndex(0)
18>Emitted(72, 129) Source(141, 40) + SourceIndex(0)
19>Emitted(72, 135) Source(141, 40) + SourceIndex(0)
20>Emitted(72, 137) Source(141, 57) + SourceIndex(0)
21>Emitted(72, 138) Source(141, 58) + SourceIndex(0)
22>Emitted(72, 141) Source(141, 61) + SourceIndex(0)
23>Emitted(72, 142) Source(141, 62) + SourceIndex(0)
24>Emitted(72, 144) Source(141, 64) + SourceIndex(0)
25>Emitted(72, 145) Source(141, 65) + SourceIndex(0)
26>Emitted(72, 148) Source(141, 68) + SourceIndex(0)
27>Emitted(72, 149) Source(141, 69) + SourceIndex(0)
28>Emitted(72, 151) Source(141, 71) + SourceIndex(0)
29>Emitted(72, 152) Source(141, 72) + SourceIndex(0)
30>Emitted(72, 154) Source(141, 74) + SourceIndex(0)
31>Emitted(72, 156) Source(141, 76) + 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(73, 5) Source(142, 5) + SourceIndex(0)
2 >Emitted(73, 12) Source(142, 12) + SourceIndex(0)
3 >Emitted(73, 13) Source(142, 13) + SourceIndex(0)
4 >Emitted(73, 16) Source(142, 16) + SourceIndex(0)
5 >Emitted(73, 17) Source(142, 17) + SourceIndex(0)
6 >Emitted(73, 22) Source(142, 22) + SourceIndex(0)
7 >Emitted(73, 23) Source(142, 23) + SourceIndex(0)
8 >Emitted(73, 24) Source(142, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(74, 2) Source(143, 2) + SourceIndex(0)
---
>>>for (_36 = { name: "trimmer", skill: "trimming" }, _37 = _36.name, name = _37 === void 0 ? "noName" : _37, _38 = _36.skill, skill = _38 === void 0 ? "skill" : _38, 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>                                                                                                                                                                                     ^^
1->
  >
2 >for (
3 >     { name = "noName", skill = "skill" } = <Robot>
4 >           { 
5 >             name
6 >                 : 
7 >                   "trimmer"
8 >                            , 
9 >                              skill
10>                                   : 
11>                                     "trimming"
12>                                                }
13>                                                 
14>                                                   name = "noName"
15>                                                                 
16>                                                                   name
17>                                                                        = 
18>                                                                                           "noName"
19>                                                                                                   
20>                                                                                                         , 
21>                                                                                                           skill = "skill"
22>                                                                                                                          
23>                                                                                                                            skill
24>                                                                                                                                  = 
25>                                                                                                                                                     "skill"
26>                                                                                                                                                            
27>                                                                                                                                                                   } = <Robot>{ name: "trimmer", skill: "trimming" }, 
28>                                                                                                                                                                    i
29>                                                                                                                                                                      = 
30>                                                                                                                                                                        0
31>                                                                                                                                                                         ; 
32>                                                                                                                                                                           i
33>                                                                                                                                                                             < 
34>                                                                                                                                                                               1
35>                                                                                                                                                                                ; 
36>                                                                                                                                                                                  i
37>                                                                                                                                                                                   ++
38>                                                                                                                                                                                     ) 
1->Emitted(75, 1) Source(144, 1) + SourceIndex(0)
2 >Emitted(75, 6) Source(144, 6) + SourceIndex(0)
3 >Emitted(75, 12) Source(144, 52) + SourceIndex(0)
4 >Emitted(75, 14) Source(144, 54) + SourceIndex(0)
5 >Emitted(75, 18) Source(144, 58) + SourceIndex(0)
6 >Emitted(75, 20) Source(144, 60) + SourceIndex(0)
7 >Emitted(75, 29) Source(144, 69) + SourceIndex(0)
8 >Emitted(75, 31) Source(144, 71) + SourceIndex(0)
9 >Emitted(75, 36) Source(144, 76) + SourceIndex(0)
10>Emitted(75, 38) Source(144, 78) + SourceIndex(0)
11>Emitted(75, 48) Source(144, 88) + SourceIndex(0)
12>Emitted(75, 50) Source(144, 90) + SourceIndex(0)
13>Emitted(75, 52) Source(144, 8) + SourceIndex(0)
14>Emitted(75, 66) Source(144, 23) + SourceIndex(0)
15>Emitted(75, 68) Source(144, 8) + SourceIndex(0)
16>Emitted(75, 72) Source(144, 12) + SourceIndex(0)
17>Emitted(75, 92) Source(144, 15) + SourceIndex(0)
18>Emitted(75, 100) Source(144, 23) + SourceIndex(0)
19>Emitted(75, 106) Source(144, 23) + SourceIndex(0)
20>Emitted(75, 108) Source(144, 25) + SourceIndex(0)
21>Emitted(75, 123) Source(144, 40) + SourceIndex(0)
22>Emitted(75, 125) Source(144, 25) + SourceIndex(0)
23>Emitted(75, 130) Source(144, 30) + SourceIndex(0)
24>Emitted(75, 150) Source(144, 33) + SourceIndex(0)
25>Emitted(75, 157) Source(144, 40) + SourceIndex(0)
26>Emitted(75, 163) Source(144, 40) + SourceIndex(0)
27>Emitted(75, 165) Source(144, 92) + SourceIndex(0)
28>Emitted(75, 166) Source(144, 93) + SourceIndex(0)
29>Emitted(75, 169) Source(144, 96) + SourceIndex(0)
30>Emitted(75, 170) Source(144, 97) + SourceIndex(0)
31>Emitted(75, 172) Source(144, 99) + SourceIndex(0)
32>Emitted(75, 173) Source(144, 100) + SourceIndex(0)
33>Emitted(75, 176) Source(144, 103) + SourceIndex(0)
34>Emitted(75, 177) Source(144, 104) + SourceIndex(0)
35>Emitted(75, 179) Source(144, 106) + SourceIndex(0)
36>Emitted(75, 180) Source(144, 107) + SourceIndex(0)
37>Emitted(75, 182) Source(144, 109) + SourceIndex(0)
38>Emitted(75, 184) Source(144, 111) + 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(76, 5) Source(145, 5) + SourceIndex(0)
2 >Emitted(76, 12) Source(145, 12) + SourceIndex(0)
3 >Emitted(76, 13) Source(145, 13) + SourceIndex(0)
4 >Emitted(76, 16) Source(145, 16) + SourceIndex(0)
5 >Emitted(76, 17) Source(145, 17) + SourceIndex(0)
6 >Emitted(76, 22) Source(145, 22) + SourceIndex(0)
7 >Emitted(76, 23) Source(145, 23) + SourceIndex(0)
8 >Emitted(76, 24) Source(145, 24) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(77, 2) Source(146, 2) + SourceIndex(0)
---
>>>for (_39 = multiRobot.name, name = _39 === void 0 ? "noName" : _39, _40 = multiRobot.skills, _41 = _40 === void 0 ? { primary: "none", secondary: "none" } : _40, _42 = _41.primary, primary = _42 === void 0 ? "primary" : _42, _43 = _41.secondary, secondary = _43 === void 0 ? "secondary" : _43, 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>                                                                                                                                                                                                                                                                                                                       ^^
1->
  >
2 >for ({
  >    
3 >     name = "noName",
  >         skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >           multiRobot
5 >                     
6 >                          
7 >                            name
8 >                                 = 
9 >                                                    "noName"
10>                                                            
11>                                                                  ,
  >                                                                      
12>                                                                    skills: {
  >                                                                            primary = "primary",
  >                                                                            secondary = "secondary"
  >                                                                        } = { primary: "none", secondary: "none" }
  >                                                                    } = 
13>                                                                          multiRobot
14>                                                                                    
15>                                                                                           
16>                                                                                             skills: {
  >                                                                                                     primary = "primary",
  >                                                                                                     secondary = "secondary"
  >                                                                                                 } = 
17>                                                                                                                    { 
18>                                                                                                                      primary
19>                                                                                                                             : 
20>                                                                                                                               "none"
21>                                                                                                                                     , 
22>                                                                                                                                       secondary
23>                                                                                                                                                : 
24>                                                                                                                                                  "none"
25>                                                                                                                                                         }
26>                                                                                                                                                          
27>                                                                                                                                                                
28>                                                                                                                                                                  primary = "primary"
29>                                                                                                                                                                                   
30>                                                                                                                                                                                     primary
31>                                                                                                                                                                                             = 
32>                                                                                                                                                                                                                "primary"
33>                                                                                                                                                                                                                         
34>                                                                                                                                                                                                                               ,
  >                                                                                                                                                                                                                                       
35>                                                                                                                                                                                                                                 secondary = "secondary"
36>                                                                                                                                                                                                                                                    
37>                                                                                                                                                                                                                                                      secondary
38>                                                                                                                                                                                                                                                                = 
39>                                                                                                                                                                                                                                                                                   "secondary"
40>                                                                                                                                                                                                                                                                                              
41>                                                                                                                                                                                                                                                                                                    
  >                                                                                                                                                                                                                                                                                                        } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                    } = multiRobot, 
42>                                                                                                                                                                                                                                                                                                      i
43>                                                                                                                                                                                                                                                                                                        = 
44>                                                                                                                                                                                                                                                                                                          0
45>                                                                                                                                                                                                                                                                                                           ; 
46>                                                                                                                                                                                                                                                                                                             i
47>                                                                                                                                                                                                                                                                                                               < 
48>                                                                                                                                                                                                                                                                                                                 1
49>                                                                                                                                                                                                                                                                                                                  ; 
50>                                                                                                                                                                                                                                                                                                                    i
51>                                                                                                                                                                                                                                                                                                                     ++
52>                                                                                                                                                                                                                                                                                                                       ) 
1->Emitted(78, 1) Source(147, 1) + SourceIndex(0)
2 >Emitted(78, 6) Source(148, 5) + SourceIndex(0)
3 >Emitted(78, 12) Source(153, 5) + SourceIndex(0)
4 >Emitted(78, 22) Source(153, 15) + SourceIndex(0)
5 >Emitted(78, 27) Source(148, 20) + SourceIndex(0)
6 >Emitted(78, 29) Source(148, 5) + SourceIndex(0)
7 >Emitted(78, 33) Source(148, 9) + SourceIndex(0)
8 >Emitted(78, 53) Source(148, 12) + SourceIndex(0)
9 >Emitted(78, 61) Source(148, 20) + SourceIndex(0)
10>Emitted(78, 67) Source(148, 20) + SourceIndex(0)
11>Emitted(78, 69) Source(149, 5) + SourceIndex(0)
12>Emitted(78, 75) Source(153, 5) + SourceIndex(0)
13>Emitted(78, 85) Source(153, 15) + SourceIndex(0)
14>Emitted(78, 92) Source(152, 47) + SourceIndex(0)
15>Emitted(78, 94) Source(149, 5) + SourceIndex(0)
16>Emitted(78, 117) Source(152, 9) + SourceIndex(0)
17>Emitted(78, 119) Source(152, 11) + SourceIndex(0)
18>Emitted(78, 126) Source(152, 18) + SourceIndex(0)
19>Emitted(78, 128) Source(152, 20) + SourceIndex(0)
20>Emitted(78, 134) Source(152, 26) + SourceIndex(0)
21>Emitted(78, 136) Source(152, 28) + SourceIndex(0)
22>Emitted(78, 145) Source(152, 37) + SourceIndex(0)
23>Emitted(78, 147) Source(152, 39) + SourceIndex(0)
24>Emitted(78, 153) Source(152, 45) + SourceIndex(0)
25>Emitted(78, 155) Source(152, 47) + SourceIndex(0)
26>Emitted(78, 161) Source(152, 47) + SourceIndex(0)
27>Emitted(78, 163) Source(150, 9) + SourceIndex(0)
28>Emitted(78, 180) Source(150, 28) + SourceIndex(0)
29>Emitted(78, 182) Source(150, 9) + SourceIndex(0)
30>Emitted(78, 189) Source(150, 16) + SourceIndex(0)
31>Emitted(78, 209) Source(150, 19) + SourceIndex(0)
32>Emitted(78, 218) Source(150, 28) + SourceIndex(0)
33>Emitted(78, 224) Source(150, 28) + SourceIndex(0)
34>Emitted(78, 226) Source(151, 9) + SourceIndex(0)
35>Emitted(78, 245) Source(151, 32) + SourceIndex(0)
36>Emitted(78, 247) Source(151, 9) + SourceIndex(0)
37>Emitted(78, 256) Source(151, 18) + SourceIndex(0)
38>Emitted(78, 276) Source(151, 21) + SourceIndex(0)
39>Emitted(78, 287) Source(151, 32) + SourceIndex(0)
40>Emitted(78, 293) Source(151, 32) + SourceIndex(0)
41>Emitted(78, 295) Source(153, 17) + SourceIndex(0)
42>Emitted(78, 296) Source(153, 18) + SourceIndex(0)
43>Emitted(78, 299) Source(153, 21) + SourceIndex(0)
44>Emitted(78, 300) Source(153, 22) + SourceIndex(0)
45>Emitted(78, 302) Source(153, 24) + SourceIndex(0)
46>Emitted(78, 303) Source(153, 25) + SourceIndex(0)
47>Emitted(78, 306) Source(153, 28) + SourceIndex(0)
48>Emitted(78, 307) Source(153, 29) + SourceIndex(0)
49>Emitted(78, 309) Source(153, 31) + SourceIndex(0)
50>Emitted(78, 310) Source(153, 32) + SourceIndex(0)
51>Emitted(78, 312) Source(153, 34) + SourceIndex(0)
52>Emitted(78, 314) Source(153, 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(79, 5) Source(154, 5) + SourceIndex(0)
2 >Emitted(79, 12) Source(154, 12) + SourceIndex(0)
3 >Emitted(79, 13) Source(154, 13) + SourceIndex(0)
4 >Emitted(79, 16) Source(154, 16) + SourceIndex(0)
5 >Emitted(79, 17) Source(154, 17) + SourceIndex(0)
6 >Emitted(79, 25) Source(154, 25) + SourceIndex(0)
7 >Emitted(79, 26) Source(154, 26) + SourceIndex(0)
8 >Emitted(79, 27) Source(154, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(80, 2) Source(155, 2) + SourceIndex(0)
---
>>>for (_44 = getMultiRobot(), _45 = _44.name, name = _45 === void 0 ? "noName" : _45, _46 = _44.skills, _47 = _46 === void 0 ? { primary: "none", secondary: "none" } : _46, _48 = _47.primary, primary = _48 === void 0 ? "primary" : _48, _49 = _47.secondary, secondary = _49 === void 0 ? "secondary" : _49, 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>                                                                                                                                                                                                                                                                                                                                ^^
1->
  >
2 >for (
3 >     {
  >         name = "noName",
  >         skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = 
4 >           getMultiRobot
5 >                        ()
6 >                          
7 >                            name = "noName"
8 >                                          
9 >                                            name
10>                                                 = 
11>                                                                    "noName"
12>                                                                            
13>                                                                                  ,
  >                                                                                      
14>                                                                                    skills: {
  >                                                                                            primary = "primary",
  >                                                                                            secondary = "secondary"
  >                                                                                        } = { primary: "none", secondary: "none" }
15>                                                                                                    
16>                                                                                                      skills: {
  >                                                                                                              primary = "primary",
  >                                                                                                              secondary = "secondary"
  >                                                                                                          } = 
17>                                                                                                                             { 
18>                                                                                                                               primary
19>                                                                                                                                      : 
20>                                                                                                                                        "none"
21>                                                                                                                                              , 
22>                                                                                                                                                secondary
23>                                                                                                                                                         : 
24>                                                                                                                                                           "none"
25>                                                                                                                                                                  }
26>                                                                                                                                                                   
27>                                                                                                                                                                         
28>                                                                                                                                                                           primary = "primary"
29>                                                                                                                                                                                            
30>                                                                                                                                                                                              primary
31>                                                                                                                                                                                                      = 
32>                                                                                                                                                                                                                         "primary"
33>                                                                                                                                                                                                                                  
34>                                                                                                                                                                                                                                        ,
  >                                                                                                                                                                                                                                                
35>                                                                                                                                                                                                                                          secondary = "secondary"
36>                                                                                                                                                                                                                                                             
37>                                                                                                                                                                                                                                                               secondary
38>                                                                                                                                                                                                                                                                         = 
39>                                                                                                                                                                                                                                                                                            "secondary"
40>                                                                                                                                                                                                                                                                                                       
41>                                                                                                                                                                                                                                                                                                             
  >                                                                                                                                                                                                                                                                                                                 } = { primary: "none", secondary: "none" }
  >                                                                                                                                                                                                                                                                                                             } = getMultiRobot(), 
42>                                                                                                                                                                                                                                                                                                               i
43>                                                                                                                                                                                                                                                                                                                 = 
44>                                                                                                                                                                                                                                                                                                                   0
45>                                                                                                                                                                                                                                                                                                                    ; 
46>                                                                                                                                                                                                                                                                                                                      i
47>                                                                                                                                                                                                                                                                                                                        < 
48>                                                                                                                                                                                                                                                                                                                          1
49>                                                                                                                                                                                                                                                                                                                           ; 
50>                                                                                                                                                                                                                                                                                                                             i
51>                                                                                                                                                                                                                                                                                                                              ++
52>                                                                                                                                                                                                                                                                                                                                ) 
1->Emitted(81, 1) Source(156, 1) + SourceIndex(0)
2 >Emitted(81, 6) Source(156, 6) + SourceIndex(0)
3 >Emitted(81, 12) Source(162, 5) + SourceIndex(0)
4 >Emitted(81, 25) Source(162, 18) + SourceIndex(0)
5 >Emitted(81, 27) Source(162, 20) + SourceIndex(0)
6 >Emitted(81, 29) Source(157, 5) + SourceIndex(0)
7 >Emitted(81, 43) Source(157, 20) + SourceIndex(0)
8 >Emitted(81, 45) Source(157, 5) + SourceIndex(0)
9 >Emitted(81, 49) Source(157, 9) + SourceIndex(0)
10>Emitted(81, 69) Source(157, 12) + SourceIndex(0)
11>Emitted(81, 77) Source(157, 20) + SourceIndex(0)
12>Emitted(81, 83) Source(157, 20) + SourceIndex(0)
13>Emitted(81, 85) Source(158, 5) + SourceIndex(0)
14>Emitted(81, 101) Source(161, 47) + SourceIndex(0)
15>Emitted(81, 103) Source(158, 5) + SourceIndex(0)
16>Emitted(81, 126) Source(161, 9) + SourceIndex(0)
17>Emitted(81, 128) Source(161, 11) + SourceIndex(0)
18>Emitted(81, 135) Source(161, 18) + SourceIndex(0)
19>Emitted(81, 137) Source(161, 20) + SourceIndex(0)
20>Emitted(81, 143) Source(161, 26) + SourceIndex(0)
21>Emitted(81, 145) Source(161, 28) + SourceIndex(0)
22>Emitted(81, 154) Source(161, 37) + SourceIndex(0)
23>Emitted(81, 156) Source(161, 39) + SourceIndex(0)
24>Emitted(81, 162) Source(161, 45) + SourceIndex(0)
25>Emitted(81, 164) Source(161, 47) + SourceIndex(0)
26>Emitted(81, 170) Source(161, 47) + SourceIndex(0)
27>Emitted(81, 172) Source(159, 9) + SourceIndex(0)
28>Emitted(81, 189) Source(159, 28) + SourceIndex(0)
29>Emitted(81, 191) Source(159, 9) + SourceIndex(0)
30>Emitted(81, 198) Source(159, 16) + SourceIndex(0)
31>Emitted(81, 218) Source(159, 19) + SourceIndex(0)
32>Emitted(81, 227) Source(159, 28) + SourceIndex(0)
33>Emitted(81, 233) Source(159, 28) + SourceIndex(0)
34>Emitted(81, 235) Source(160, 9) + SourceIndex(0)
35>Emitted(81, 254) Source(160, 32) + SourceIndex(0)
36>Emitted(81, 256) Source(160, 9) + SourceIndex(0)
37>Emitted(81, 265) Source(160, 18) + SourceIndex(0)
38>Emitted(81, 285) Source(160, 21) + SourceIndex(0)
39>Emitted(81, 296) Source(160, 32) + SourceIndex(0)
40>Emitted(81, 302) Source(160, 32) + SourceIndex(0)
41>Emitted(81, 304) Source(162, 22) + SourceIndex(0)
42>Emitted(81, 305) Source(162, 23) + SourceIndex(0)
43>Emitted(81, 308) Source(162, 26) + SourceIndex(0)
44>Emitted(81, 309) Source(162, 27) + SourceIndex(0)
45>Emitted(81, 311) Source(162, 29) + SourceIndex(0)
46>Emitted(81, 312) Source(162, 30) + SourceIndex(0)
47>Emitted(81, 315) Source(162, 33) + SourceIndex(0)
48>Emitted(81, 316) Source(162, 34) + SourceIndex(0)
49>Emitted(81, 318) Source(162, 36) + SourceIndex(0)
50>Emitted(81, 319) Source(162, 37) + SourceIndex(0)
51>Emitted(81, 321) Source(162, 39) + SourceIndex(0)
52>Emitted(81, 323) Source(162, 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(82, 5) Source(163, 5) + SourceIndex(0)
2 >Emitted(82, 12) Source(163, 12) + SourceIndex(0)
3 >Emitted(82, 13) Source(163, 13) + SourceIndex(0)
4 >Emitted(82, 16) Source(163, 16) + SourceIndex(0)
5 >Emitted(82, 17) Source(163, 17) + SourceIndex(0)
6 >Emitted(82, 25) Source(163, 25) + SourceIndex(0)
7 >Emitted(82, 26) Source(163, 26) + SourceIndex(0)
8 >Emitted(82, 27) Source(163, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(83, 2) Source(164, 2) + SourceIndex(0)
---
>>>for (_50 = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, _51 = _50.name, name = _51 === void 0 ? "noName" : _51, _52 = _50.skills, _53 = _52 === void 0 ? { primary: "none", secondary: "none" } : _52, _54 = _53.primary, primary = _54 === void 0 ? "primary" : _54, _55 = _53.secondary, secondary = _55 === void 0 ? "secondary" : _55,
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>                                                                                                                                                                                                                                                                                                                                                                 ^^^^^^
1->
  >
2 >for (
3 >     {
  >         name = "noName",
  >         skills: {
  >             primary = "primary",
  >             secondary = "secondary"
  >         } = { primary: "none", secondary: "none" }
  >     } = <MultiRobot>
4 >           { 
5 >             name
6 >                 : 
7 >                   "trimmer"
8 >                            , 
9 >                              skills
10>                                    : 
11>                                      { 
12>                                        primary
13>                                               : 
14>                                                 "trimming"
15>                                                           , 
16>                                                             secondary
17>                                                                      : 
18>                                                                        "edging"
19>                                                                                 }
20>                                                                                   }
21>                                                                                    
22>                                                                                      name = "noName"
23>                                                                                                    
24>                                                                                                      name
25>                                                                                                           = 
26>                                                                                                                              "noName"
27>                                                                                                                                      
28>                                                                                                                                            ,
  >                                                                                                                                                
29>                                                                                                                                              skills: {
  >                                                                                                                                                      primary = "primary",
  >                                                                                                                                                      secondary = "secondary"
  >                                                                                                                                                  } = { primary: "none", secondary: "none" }
30>                                                                                                                                                              
31>                                                                                                                                                                skills: {
  >                                                                                                                                                                        primary = "primary",
  >                                                                                                                                                                        secondary = "secondary"
  >                                                                                                                                                                    } = 
32>                                                                                                                                                                                       { 
33>                                                                                                                                                                                         primary
34>                                                                                                                                                                                                : 
35>                                                                                                                                                                                                  "none"
36>                                                                                                                                                                                                        , 
37>                                                                                                                                                                                                          secondary
38>                                                                                                                                                                                                                   : 
39>                                                                                                                                                                                                                     "none"
40>                                                                                                                                                                                                                            }
41>                                                                                                                                                                                                                             
42>                                                                                                                                                                                                                                   
43>                                                                                                                                                                                                                                     primary = "primary"
44>                                                                                                                                                                                                                                                      
45>                                                                                                                                                                                                                                                        primary
46>                                                                                                                                                                                                                                                                = 
47>                                                                                                                                                                                                                                                                                   "primary"
48>                                                                                                                                                                                                                                                                                            
49>                                                                                                                                                                                                                                                                                                  ,
  >                                                                                                                                                                                                                                                                                                          
50>                                                                                                                                                                                                                                                                                                    secondary = "secondary"
51>                                                                                                                                                                                                                                                                                                                       
52>                                                                                                                                                                                                                                                                                                                         secondary
53>                                                                                                                                                                                                                                                                                                                                   = 
54>                                                                                                                                                                                                                                                                                                                                                      "secondary"
55>                                                                                                                                                                                                                                                                                                                                                                 
1->Emitted(84, 1) Source(165, 1) + SourceIndex(0)
2 >Emitted(84, 6) Source(165, 6) + SourceIndex(0)
3 >Emitted(84, 12) Source(171, 17) + SourceIndex(0)
4 >Emitted(84, 14) Source(171, 19) + SourceIndex(0)
5 >Emitted(84, 18) Source(171, 23) + SourceIndex(0)
6 >Emitted(84, 20) Source(171, 25) + SourceIndex(0)
7 >Emitted(84, 29) Source(171, 34) + SourceIndex(0)
8 >Emitted(84, 31) Source(171, 36) + SourceIndex(0)
9 >Emitted(84, 37) Source(171, 42) + SourceIndex(0)
10>Emitted(84, 39) Source(171, 44) + SourceIndex(0)
11>Emitted(84, 41) Source(171, 46) + SourceIndex(0)
12>Emitted(84, 48) Source(171, 53) + SourceIndex(0)
13>Emitted(84, 50) Source(171, 55) + SourceIndex(0)
14>Emitted(84, 60) Source(171, 65) + SourceIndex(0)
15>Emitted(84, 62) Source(171, 67) + SourceIndex(0)
16>Emitted(84, 71) Source(171, 76) + SourceIndex(0)
17>Emitted(84, 73) Source(171, 78) + SourceIndex(0)
18>Emitted(84, 81) Source(171, 86) + SourceIndex(0)
19>Emitted(84, 83) Source(171, 88) + SourceIndex(0)
20>Emitted(84, 85) Source(171, 90) + SourceIndex(0)
21>Emitted(84, 87) Source(166, 5) + SourceIndex(0)
22>Emitted(84, 101) Source(166, 20) + SourceIndex(0)
23>Emitted(84, 103) Source(166, 5) + SourceIndex(0)
24>Emitted(84, 107) Source(166, 9) + SourceIndex(0)
25>Emitted(84, 127) Source(166, 12) + SourceIndex(0)
26>Emitted(84, 135) Source(166, 20) + SourceIndex(0)
27>Emitted(84, 141) Source(166, 20) + SourceIndex(0)
28>Emitted(84, 143) Source(167, 5) + SourceIndex(0)
29>Emitted(84, 159) Source(170, 47) + SourceIndex(0)
30>Emitted(84, 161) Source(167, 5) + SourceIndex(0)
31>Emitted(84, 184) Source(170, 9) + SourceIndex(0)
32>Emitted(84, 186) Source(170, 11) + SourceIndex(0)
33>Emitted(84, 193) Source(170, 18) + SourceIndex(0)
34>Emitted(84, 195) Source(170, 20) + SourceIndex(0)
35>Emitted(84, 201) Source(170, 26) + SourceIndex(0)
36>Emitted(84, 203) Source(170, 28) + SourceIndex(0)
37>Emitted(84, 212) Source(170, 37) + SourceIndex(0)
38>Emitted(84, 214) Source(170, 39) + SourceIndex(0)
39>Emitted(84, 220) Source(170, 45) + SourceIndex(0)
40>Emitted(84, 222) Source(170, 47) + SourceIndex(0)
41>Emitted(84, 228) Source(170, 47) + SourceIndex(0)
42>Emitted(84, 230) Source(168, 9) + SourceIndex(0)
43>Emitted(84, 247) Source(168, 28) + SourceIndex(0)
44>Emitted(84, 249) Source(168, 9) + SourceIndex(0)
45>Emitted(84, 256) Source(168, 16) + SourceIndex(0)
46>Emitted(84, 276) Source(168, 19) + SourceIndex(0)
47>Emitted(84, 285) Source(168, 28) + SourceIndex(0)
48>Emitted(84, 291) Source(168, 28) + SourceIndex(0)
49>Emitted(84, 293) Source(169, 9) + SourceIndex(0)
50>Emitted(84, 312) Source(169, 32) + SourceIndex(0)
51>Emitted(84, 314) Source(169, 9) + SourceIndex(0)
52>Emitted(84, 323) Source(169, 18) + SourceIndex(0)
53>Emitted(84, 343) Source(169, 21) + SourceIndex(0)
54>Emitted(84, 354) Source(169, 32) + SourceIndex(0)
55>Emitted(84, 360) Source(169, 32) + SourceIndex(0)
---
>>>    i = 0; i < 1; i++) {
1 >^^^^
2 >    ^
3 >     ^^^
4 >        ^
5 >         ^^
6 >           ^
7 >            ^^^
8 >               ^
9 >                ^^
10>                  ^
11>                   ^^
12>                     ^^
13>                       ^^^^->
1 >
  >    } = { primary: "none", secondary: "none" }
  >} = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
  >    
2 >    i
3 >      = 
4 >        0
5 >         ; 
6 >           i
7 >             < 
8 >               1
9 >                ; 
10>                  i
11>                   ++
12>                     ) 
1 >Emitted(85, 5) Source(172, 5) + SourceIndex(0)
2 >Emitted(85, 6) Source(172, 6) + SourceIndex(0)
3 >Emitted(85, 9) Source(172, 9) + SourceIndex(0)
4 >Emitted(85, 10) Source(172, 10) + SourceIndex(0)
5 >Emitted(85, 12) Source(172, 12) + SourceIndex(0)
6 >Emitted(85, 13) Source(172, 13) + SourceIndex(0)
7 >Emitted(85, 16) Source(172, 16) + SourceIndex(0)
8 >Emitted(85, 17) Source(172, 17) + SourceIndex(0)
9 >Emitted(85, 19) Source(172, 19) + SourceIndex(0)
10>Emitted(85, 20) Source(172, 20) + SourceIndex(0)
11>Emitted(85, 22) Source(172, 22) + SourceIndex(0)
12>Emitted(85, 24) Source(172, 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(86, 5) Source(173, 5) + SourceIndex(0)
2 >Emitted(86, 12) Source(173, 12) + SourceIndex(0)
3 >Emitted(86, 13) Source(173, 13) + SourceIndex(0)
4 >Emitted(86, 16) Source(173, 16) + SourceIndex(0)
5 >Emitted(86, 17) Source(173, 17) + SourceIndex(0)
6 >Emitted(86, 25) Source(173, 25) + SourceIndex(0)
7 >Emitted(86, 26) Source(173, 26) + SourceIndex(0)
8 >Emitted(86, 27) Source(173, 27) + SourceIndex(0)
---
>>>}
1 >^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >}
1 >Emitted(87, 2) Source(174, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js.map