File: controlFlowSelfReferentialLoop.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (875 lines) | stat: -rw-r--r-- 48,588 bytes parent folder | download | duplicates (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
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
=== tests/cases/compiler/controlFlowSelfReferentialLoop.ts ===
// Repro from #12319

function md5(string:string): void {
>md5 : Symbol(md5, Decl(controlFlowSelfReferentialLoop.ts, 0, 0))
>string : Symbol(string, Decl(controlFlowSelfReferentialLoop.ts, 2, 13))

    function FF(a,b,c,d,x,s,ac) {
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 4, 16))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 4, 18))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 4, 20))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 4, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 4, 24))
>s : Symbol(s, Decl(controlFlowSelfReferentialLoop.ts, 4, 26))
>ac : Symbol(ac, Decl(controlFlowSelfReferentialLoop.ts, 4, 28))

        return 0;
    };

    function GG(a,b,c,d,x,s,ac) {
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 8, 16))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 8, 18))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 8, 20))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 8, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 8, 24))
>s : Symbol(s, Decl(controlFlowSelfReferentialLoop.ts, 8, 26))
>ac : Symbol(ac, Decl(controlFlowSelfReferentialLoop.ts, 8, 28))

        return 0;
    };

    function HH(a,b,c,d,x,s,ac) {
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 12, 16))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 12, 18))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 12, 20))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 12, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 12, 24))
>s : Symbol(s, Decl(controlFlowSelfReferentialLoop.ts, 12, 26))
>ac : Symbol(ac, Decl(controlFlowSelfReferentialLoop.ts, 12, 28))

        return 0;
    };

    function II(a,b,c,d,x,s,ac) {
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 16, 16))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 16, 18))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 16, 20))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 16, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 16, 24))
>s : Symbol(s, Decl(controlFlowSelfReferentialLoop.ts, 16, 26))
>ac : Symbol(ac, Decl(controlFlowSelfReferentialLoop.ts, 16, 28))

        return 0;
    };

    var x=Array();
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))

    var k,AA,BB,CC,DD,a,b,c,d;
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>AA : Symbol(AA, Decl(controlFlowSelfReferentialLoop.ts, 21, 10))
>BB : Symbol(BB, Decl(controlFlowSelfReferentialLoop.ts, 21, 13))
>CC : Symbol(CC, Decl(controlFlowSelfReferentialLoop.ts, 21, 16))
>DD : Symbol(DD, Decl(controlFlowSelfReferentialLoop.ts, 21, 19))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))

    var S11=7, S12=12, S13=17, S14=22;
>S11 : Symbol(S11, Decl(controlFlowSelfReferentialLoop.ts, 22, 7))
>S12 : Symbol(S12, Decl(controlFlowSelfReferentialLoop.ts, 22, 14))
>S13 : Symbol(S13, Decl(controlFlowSelfReferentialLoop.ts, 22, 22))
>S14 : Symbol(S14, Decl(controlFlowSelfReferentialLoop.ts, 22, 30))

    var S21=5, S22=9 , S23=14, S24=20;
>S21 : Symbol(S21, Decl(controlFlowSelfReferentialLoop.ts, 23, 7))
>S22 : Symbol(S22, Decl(controlFlowSelfReferentialLoop.ts, 23, 14))
>S23 : Symbol(S23, Decl(controlFlowSelfReferentialLoop.ts, 23, 22))
>S24 : Symbol(S24, Decl(controlFlowSelfReferentialLoop.ts, 23, 30))

    var S31=4, S32=11, S33=16, S34=23;
>S31 : Symbol(S31, Decl(controlFlowSelfReferentialLoop.ts, 24, 7))
>S32 : Symbol(S32, Decl(controlFlowSelfReferentialLoop.ts, 24, 14))
>S33 : Symbol(S33, Decl(controlFlowSelfReferentialLoop.ts, 24, 22))
>S34 : Symbol(S34, Decl(controlFlowSelfReferentialLoop.ts, 24, 30))

    var S41=6, S42=10, S43=15, S44=21;
>S41 : Symbol(S41, Decl(controlFlowSelfReferentialLoop.ts, 25, 7))
>S42 : Symbol(S42, Decl(controlFlowSelfReferentialLoop.ts, 25, 14))
>S43 : Symbol(S43, Decl(controlFlowSelfReferentialLoop.ts, 25, 22))
>S44 : Symbol(S44, Decl(controlFlowSelfReferentialLoop.ts, 25, 30))

    x = [1];
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))

    a = 0x67452301; b = 0xEFCDAB89; c = 0x98BADCFE; d = 0x10325476;
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))

    for (k=0;k<x.length;k+=16) {
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>x.length : Symbol(Array.length, Decl(lib.es5.d.ts, --, --))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>length : Symbol(Array.length, Decl(lib.es5.d.ts, --, --))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))

        AA=a; BB=b; CC=c; DD=d;
>AA : Symbol(AA, Decl(controlFlowSelfReferentialLoop.ts, 21, 10))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>BB : Symbol(BB, Decl(controlFlowSelfReferentialLoop.ts, 21, 13))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>CC : Symbol(CC, Decl(controlFlowSelfReferentialLoop.ts, 21, 16))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>DD : Symbol(DD, Decl(controlFlowSelfReferentialLoop.ts, 21, 19))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))

        a=FF(a,b,c,d,x[k+0], S11,0xD76AA478);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S11 : Symbol(S11, Decl(controlFlowSelfReferentialLoop.ts, 22, 7))

        d=FF(d,a,b,c,x[k+1], S12,0xE8C7B756);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S12 : Symbol(S12, Decl(controlFlowSelfReferentialLoop.ts, 22, 14))

        c=FF(c,d,a,b,x[k+2], S13,0x242070DB);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S13 : Symbol(S13, Decl(controlFlowSelfReferentialLoop.ts, 22, 22))

        b=FF(b,c,d,a,x[k+3], S14,0xC1BDCEEE);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S14 : Symbol(S14, Decl(controlFlowSelfReferentialLoop.ts, 22, 30))

        a=FF(a,b,c,d,x[k+4], S11,0xF57C0FAF);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S11 : Symbol(S11, Decl(controlFlowSelfReferentialLoop.ts, 22, 7))

        d=FF(d,a,b,c,x[k+5], S12,0x4787C62A);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S12 : Symbol(S12, Decl(controlFlowSelfReferentialLoop.ts, 22, 14))

        c=FF(c,d,a,b,x[k+6], S13,0xA8304613);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S13 : Symbol(S13, Decl(controlFlowSelfReferentialLoop.ts, 22, 22))

        b=FF(b,c,d,a,x[k+7], S14,0xFD469501);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S14 : Symbol(S14, Decl(controlFlowSelfReferentialLoop.ts, 22, 30))

        a=FF(a,b,c,d,x[k+8], S11,0x698098D8);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S11 : Symbol(S11, Decl(controlFlowSelfReferentialLoop.ts, 22, 7))

        d=FF(d,a,b,c,x[k+9], S12,0x8B44F7AF);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S12 : Symbol(S12, Decl(controlFlowSelfReferentialLoop.ts, 22, 14))

        c=FF(c,d,a,b,x[k+10],S13,0xFFFF5BB1);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S13 : Symbol(S13, Decl(controlFlowSelfReferentialLoop.ts, 22, 22))

        b=FF(b,c,d,a,x[k+11],S14,0x895CD7BE);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S14 : Symbol(S14, Decl(controlFlowSelfReferentialLoop.ts, 22, 30))

        a=FF(a,b,c,d,x[k+12],S11,0x6B901122);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S11 : Symbol(S11, Decl(controlFlowSelfReferentialLoop.ts, 22, 7))

        d=FF(d,a,b,c,x[k+13],S12,0xFD987193);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S12 : Symbol(S12, Decl(controlFlowSelfReferentialLoop.ts, 22, 14))

        c=FF(c,d,a,b,x[k+14],S13,0xA679438E);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S13 : Symbol(S13, Decl(controlFlowSelfReferentialLoop.ts, 22, 22))

        b=FF(b,c,d,a,x[k+15],S14,0x49B40821);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>FF : Symbol(FF, Decl(controlFlowSelfReferentialLoop.ts, 2, 35))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S14 : Symbol(S14, Decl(controlFlowSelfReferentialLoop.ts, 22, 30))

        a=GG(a,b,c,d,x[k+1], S21,0xF61E2562);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S21 : Symbol(S21, Decl(controlFlowSelfReferentialLoop.ts, 23, 7))

        d=GG(d,a,b,c,x[k+6], S22,0xC040B340);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S22 : Symbol(S22, Decl(controlFlowSelfReferentialLoop.ts, 23, 14))

        c=GG(c,d,a,b,x[k+11],S23,0x265E5A51);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S23 : Symbol(S23, Decl(controlFlowSelfReferentialLoop.ts, 23, 22))

        b=GG(b,c,d,a,x[k+0], S24,0xE9B6C7AA);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S24 : Symbol(S24, Decl(controlFlowSelfReferentialLoop.ts, 23, 30))

        a=GG(a,b,c,d,x[k+5], S21,0xD62F105D);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S21 : Symbol(S21, Decl(controlFlowSelfReferentialLoop.ts, 23, 7))

        d=GG(d,a,b,c,x[k+10],S22,0x2441453);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S22 : Symbol(S22, Decl(controlFlowSelfReferentialLoop.ts, 23, 14))

        c=GG(c,d,a,b,x[k+15],S23,0xD8A1E681);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S23 : Symbol(S23, Decl(controlFlowSelfReferentialLoop.ts, 23, 22))

        b=GG(b,c,d,a,x[k+4], S24,0xE7D3FBC8);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S24 : Symbol(S24, Decl(controlFlowSelfReferentialLoop.ts, 23, 30))

        a=GG(a,b,c,d,x[k+9], S21,0x21E1CDE6);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S21 : Symbol(S21, Decl(controlFlowSelfReferentialLoop.ts, 23, 7))

        d=GG(d,a,b,c,x[k+14],S22,0xC33707D6);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S22 : Symbol(S22, Decl(controlFlowSelfReferentialLoop.ts, 23, 14))

        c=GG(c,d,a,b,x[k+3], S23,0xF4D50D87);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S23 : Symbol(S23, Decl(controlFlowSelfReferentialLoop.ts, 23, 22))

        b=GG(b,c,d,a,x[k+8], S24,0x455A14ED);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S24 : Symbol(S24, Decl(controlFlowSelfReferentialLoop.ts, 23, 30))

        a=GG(a,b,c,d,x[k+13],S21,0xA9E3E905);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S21 : Symbol(S21, Decl(controlFlowSelfReferentialLoop.ts, 23, 7))

        d=GG(d,a,b,c,x[k+2], S22,0xFCEFA3F8);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S22 : Symbol(S22, Decl(controlFlowSelfReferentialLoop.ts, 23, 14))

        c=GG(c,d,a,b,x[k+7], S23,0x676F02D9);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S23 : Symbol(S23, Decl(controlFlowSelfReferentialLoop.ts, 23, 22))

        b=GG(b,c,d,a,x[k+12],S24,0x8D2A4C8A);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>GG : Symbol(GG, Decl(controlFlowSelfReferentialLoop.ts, 6, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S24 : Symbol(S24, Decl(controlFlowSelfReferentialLoop.ts, 23, 30))

        a=HH(a,b,c,d,x[k+5], S31,0xFFFA3942);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S31 : Symbol(S31, Decl(controlFlowSelfReferentialLoop.ts, 24, 7))

        d=HH(d,a,b,c,x[k+8], S32,0x8771F681);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S32 : Symbol(S32, Decl(controlFlowSelfReferentialLoop.ts, 24, 14))

        c=HH(c,d,a,b,x[k+11],S33,0x6D9D6122);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S33 : Symbol(S33, Decl(controlFlowSelfReferentialLoop.ts, 24, 22))

        b=HH(b,c,d,a,x[k+14],S34,0xFDE5380C);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S34 : Symbol(S34, Decl(controlFlowSelfReferentialLoop.ts, 24, 30))

        a=HH(a,b,c,d,x[k+1], S31,0xA4BEEA44);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S31 : Symbol(S31, Decl(controlFlowSelfReferentialLoop.ts, 24, 7))

        d=HH(d,a,b,c,x[k+4], S32,0x4BDECFA9);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S32 : Symbol(S32, Decl(controlFlowSelfReferentialLoop.ts, 24, 14))

        c=HH(c,d,a,b,x[k+7], S33,0xF6BB4B60);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S33 : Symbol(S33, Decl(controlFlowSelfReferentialLoop.ts, 24, 22))

        b=HH(b,c,d,a,x[k+10],S34,0xBEBFBC70);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S34 : Symbol(S34, Decl(controlFlowSelfReferentialLoop.ts, 24, 30))

        a=HH(a,b,c,d,x[k+13],S31,0x289B7EC6);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S31 : Symbol(S31, Decl(controlFlowSelfReferentialLoop.ts, 24, 7))

        d=HH(d,a,b,c,x[k+0], S32,0xEAA127FA);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S32 : Symbol(S32, Decl(controlFlowSelfReferentialLoop.ts, 24, 14))

        c=HH(c,d,a,b,x[k+3], S33,0xD4EF3085);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S33 : Symbol(S33, Decl(controlFlowSelfReferentialLoop.ts, 24, 22))

        b=HH(b,c,d,a,x[k+6], S34,0x4881D05);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S34 : Symbol(S34, Decl(controlFlowSelfReferentialLoop.ts, 24, 30))

        a=HH(a,b,c,d,x[k+9], S31,0xD9D4D039);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S31 : Symbol(S31, Decl(controlFlowSelfReferentialLoop.ts, 24, 7))

        d=HH(d,a,b,c,x[k+12],S32,0xE6DB99E5);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S32 : Symbol(S32, Decl(controlFlowSelfReferentialLoop.ts, 24, 14))

        c=HH(c,d,a,b,x[k+15],S33,0x1FA27CF8);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S33 : Symbol(S33, Decl(controlFlowSelfReferentialLoop.ts, 24, 22))

        b=HH(b,c,d,a,x[k+2], S34,0xC4AC5665);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>HH : Symbol(HH, Decl(controlFlowSelfReferentialLoop.ts, 10, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S34 : Symbol(S34, Decl(controlFlowSelfReferentialLoop.ts, 24, 30))

        a=II(a,b,c,d,x[k+0], S41,0xF4292244);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S41 : Symbol(S41, Decl(controlFlowSelfReferentialLoop.ts, 25, 7))

        d=II(d,a,b,c,x[k+7], S42,0x432AFF97);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S42 : Symbol(S42, Decl(controlFlowSelfReferentialLoop.ts, 25, 14))

        c=II(c,d,a,b,x[k+14],S43,0xAB9423A7);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S43 : Symbol(S43, Decl(controlFlowSelfReferentialLoop.ts, 25, 22))

        b=II(b,c,d,a,x[k+5], S44,0xFC93A039);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S44 : Symbol(S44, Decl(controlFlowSelfReferentialLoop.ts, 25, 30))

        a=II(a,b,c,d,x[k+12],S41,0x655B59C3);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S41 : Symbol(S41, Decl(controlFlowSelfReferentialLoop.ts, 25, 7))

        d=II(d,a,b,c,x[k+3], S42,0x8F0CCC92);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S42 : Symbol(S42, Decl(controlFlowSelfReferentialLoop.ts, 25, 14))

        c=II(c,d,a,b,x[k+10],S43,0xFFEFF47D);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S43 : Symbol(S43, Decl(controlFlowSelfReferentialLoop.ts, 25, 22))

        b=II(b,c,d,a,x[k+1], S44,0x85845DD1);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S44 : Symbol(S44, Decl(controlFlowSelfReferentialLoop.ts, 25, 30))

        a=II(a,b,c,d,x[k+8], S41,0x6FA87E4F);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S41 : Symbol(S41, Decl(controlFlowSelfReferentialLoop.ts, 25, 7))

        d=II(d,a,b,c,x[k+15],S42,0xFE2CE6E0);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S42 : Symbol(S42, Decl(controlFlowSelfReferentialLoop.ts, 25, 14))

        c=II(c,d,a,b,x[k+6], S43,0xA3014314);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S43 : Symbol(S43, Decl(controlFlowSelfReferentialLoop.ts, 25, 22))

        b=II(b,c,d,a,x[k+13],S44,0x4E0811A1);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S44 : Symbol(S44, Decl(controlFlowSelfReferentialLoop.ts, 25, 30))

        a=II(a,b,c,d,x[k+4], S41,0xF7537E82);
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S41 : Symbol(S41, Decl(controlFlowSelfReferentialLoop.ts, 25, 7))

        d=II(d,a,b,c,x[k+11],S42,0xBD3AF235);
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S42 : Symbol(S42, Decl(controlFlowSelfReferentialLoop.ts, 25, 14))

        c=II(c,d,a,b,x[k+2], S43,0x2AD7D2BB);
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S43 : Symbol(S43, Decl(controlFlowSelfReferentialLoop.ts, 25, 22))

        b=II(b,c,d,a,x[k+9], S44,0xEB86D391);
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>II : Symbol(II, Decl(controlFlowSelfReferentialLoop.ts, 14, 6))
>b : Symbol(b, Decl(controlFlowSelfReferentialLoop.ts, 21, 24))
>c : Symbol(c, Decl(controlFlowSelfReferentialLoop.ts, 21, 26))
>d : Symbol(d, Decl(controlFlowSelfReferentialLoop.ts, 21, 28))
>a : Symbol(a, Decl(controlFlowSelfReferentialLoop.ts, 21, 22))
>x : Symbol(x, Decl(controlFlowSelfReferentialLoop.ts, 20, 7))
>k : Symbol(k, Decl(controlFlowSelfReferentialLoop.ts, 21, 7))
>S44 : Symbol(S44, Decl(controlFlowSelfReferentialLoop.ts, 25, 30))
    }
}
export default md5;
>md5 : Symbol(md5, Decl(controlFlowSelfReferentialLoop.ts, 0, 0))

// Repro from #26655

interface DataShape {
>DataShape : Symbol(DataShape, Decl(controlFlowSelfReferentialLoop.ts, 99, 19))

  message: { id: string }
>message : Symbol(DataShape.message, Decl(controlFlowSelfReferentialLoop.ts, 103, 21))
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 104, 12))
}

function getObject(id: string | number) {
>getObject : Symbol(getObject, Decl(controlFlowSelfReferentialLoop.ts, 105, 1))
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 107, 19))

  return {} as any
}

;(() => {
  let id: string | number = 'a'
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 112, 5))

  while (1) {
    const data = getObject(id) as DataShape
>data : Symbol(data, Decl(controlFlowSelfReferentialLoop.ts, 114, 9))
>getObject : Symbol(getObject, Decl(controlFlowSelfReferentialLoop.ts, 105, 1))
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 112, 5))
>DataShape : Symbol(DataShape, Decl(controlFlowSelfReferentialLoop.ts, 99, 19))

    const message = data.message
>message : Symbol(message, Decl(controlFlowSelfReferentialLoop.ts, 115, 9))
>data.message : Symbol(DataShape.message, Decl(controlFlowSelfReferentialLoop.ts, 103, 21))
>data : Symbol(data, Decl(controlFlowSelfReferentialLoop.ts, 114, 9))
>message : Symbol(DataShape.message, Decl(controlFlowSelfReferentialLoop.ts, 103, 21))

    id = message.id
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 112, 5))
>message.id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 104, 12))
>message : Symbol(message, Decl(controlFlowSelfReferentialLoop.ts, 115, 9))
>id : Symbol(id, Decl(controlFlowSelfReferentialLoop.ts, 104, 12))
  }
})()