-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiffscript.txt
More file actions
12338 lines (12338 loc) · 728 KB
/
diffscript.txt
File metadata and controls
12338 lines (12338 loc) · 728 KB
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
Match Block(6266) to Block(6279)
Match InfixExpression: +(10646) to InfixExpression: +(10649)
Match SimpleName: name(9191) to SimpleName: name(9204)
Match SimpleName: stackTop(9481) to SimpleName: stackTop(9494)
Match SimpleName: Scriptable(8781) to SimpleName: Scriptable(8794)
Match PrimitiveType: int(11698) to PrimitiveType: int(11701)
Match Dimension(11761) to Dimension(11764)
Match ExpressionStatement(8712) to ExpressionStatement(8725)
Match SimpleType: String(5274) to SimpleType: String(5274)
Match NumberLiteral: 2(4907) to NumberLiteral: 2(4907)
Match Assignment: =(11040) to Assignment: =(11043)
Match SimpleName: RETURN_UNDEF_ICODE(7388) to SimpleName: RETURN_UNDEF_ICODE(7401)
Match Block(4043) to Block(4043)
Match ExpressionStatement(6119) to ExpressionStatement(6132)
Match SimpleName: String(1589) to SimpleName: String(1589)
Match NumberLiteral: 0(4339) to NumberLiteral: 0(4339)
Match QualifiedName: TokenStream.THROW(3384) to QualifiedName: TokenStream.THROW(3384)
Match IfStatement(9109) to IfStatement(9122)
Match SimpleName: pc(4605) to SimpleName: pc(4605)
Match QualifiedName: TokenStream.THROW(3402) to QualifiedName: TokenStream.THROW(3402)
Match SimpleName: pc(5640) to SimpleName: pc(5640)
Match SimpleName: stackTop(9385) to SimpleName: stackTop(9398)
Match SimpleName: name(9327) to SimpleName: name(9340)
Match SimpleName: i(10297) to SimpleName: i(10300)
Match SimpleName: NativeFunction(12138) to SimpleName: NativeFunction(12141)
Match SimpleName: child(2182) to SimpleName: child(2182)
Match SingleVariableDeclaration(12146) to SingleVariableDeclaration(12149)
Match ReturnStatement(4641) to ReturnStatement(4641)
Match SimpleName: stackTop(8200) to SimpleName: stackTop(8213)
Match ExpressionStatement(300) to ExpressionStatement(300)
Match ExpressionStatement(7540) to ExpressionStatement(7553)
Match Block(2238) to Block(2238)
Match Block(8797) to Block(8810)
Match ExpressionStatement(10365) to ExpressionStatement(10368)
Match SimpleName: lhs(8896) to SimpleName: lhs(8909)
Match VariableDeclarationStatement(8708) to VariableDeclarationStatement(8721)
Match Assignment: =(1652) to Assignment: =(1652)
Match ExpressionStatement(1101) to ExpressionStatement(1101)
Match SimpleName: DBL_MRK(9745) to SimpleName: DBL_MRK(9758)
Match VariableDeclarationStatement(1834) to VariableDeclarationStatement(1834)
Match SimpleName: addString(2731) to SimpleName: addString(2731)
Match Block(5071) to Block(5071)
Match MethodInvocation(9462) to MethodInvocation(9475)
Match QualifiedName: TokenStream.VARINC(2778) to QualifiedName: TokenStream.VARINC(2778)
Match VariableDeclarationStatement(8975) to VariableDeclarationStatement(8988)
Match SimpleName: name(9373) to SimpleName: name(9386)
Match SimpleName: iCodeTop(3423) to SimpleName: iCodeTop(3423)
Match MethodInvocation(6493) to MethodInvocation(6506)
Match SimpleName: ScriptRuntime(9356) to SimpleName: ScriptRuntime(9369)
Match CatchClause(4700) to CatchClause(4700)
Match QualifiedName: cx.instructionCount(8670) to QualifiedName: cx.instructionCount(8683)
Match SimpleName: stack(10148) to SimpleName: stack(10161)
Match MethodInvocation(234) to MethodInvocation(234)
Match SimpleName: stackTop(8109) to SimpleName: stackTop(8122)
Match MethodInvocation(175) to MethodInvocation(175)
Match SimpleName: iCodeTop(4160) to SimpleName: iCodeTop(4160)
Match QualifiedName: TokenStream.SETELEM(2468) to QualifiedName: TokenStream.SETELEM(2468)
Match ArrayAccess(8103) to ArrayAccess(8116)
Match MethodInvocation(2720) to MethodInvocation(2720)
Match PrefixExpression: !(6953) to PrefixExpression: !(6966)
Match SimpleName: scope(6089) to SimpleName: scope(6102)
Match VariableDeclarationFragment(8726) to VariableDeclarationFragment(8739)
Match SimpleName: sDbl(7092) to SimpleName: sDbl(7105)
Match PrefixExpression: -(4421) to PrefixExpression: -(4421)
Match SimpleName: getFirstChild(1324) to SimpleName: getFirstChild(1324)
Match SimpleName: lhs(9163) to SimpleName: lhs(9176)
Match SimpleType: String(11021) to SimpleType: String(11024)
Match ExpressionStatement(9226) to ExpressionStatement(9239)
Match BreakStatement(2368) to BreakStatement(2368)
Match SimpleName: sDbl(6899) to SimpleName: sDbl(6912)
Match Assignment: =(2268) to Assignment: =(2268)
Match InstanceofExpression(11048) to InstanceofExpression(11051)
Match VariableDeclarationStatement(637) to VariableDeclarationStatement(637)
Match VariableDeclarationFragment(644) to VariableDeclarationFragment(644)
Match BreakStatement(9304) to BreakStatement(9317)
Match ExpressionStatement(381) to ExpressionStatement(381)
Match Assignment: =(11419) to Assignment: =(11422)
Match CastExpression(3716) to CastExpression(3716)
Match SwitchCase(7807) to SwitchCase(7820)
Match VariableDeclarationStatement(8771) to VariableDeclarationStatement(8784)
Match MethodInvocation(3715) to MethodInvocation(3715)
Match ArrayAccess(7260) to ArrayAccess(7273)
Match VariableDeclarationStatement(290) to VariableDeclarationStatement(290)
Match Block(2806) to Block(2806)
Match VariableDeclarationStatement(6661) to VariableDeclarationStatement(6674)
Match MethodInvocation(6587) to MethodInvocation(6600)
Match SingleVariableDeclaration(4600) to SingleVariableDeclaration(4600)
Match Assignment: =(2049) to Assignment: =(2049)
Match SimpleType: Boolean(11389) to SimpleType: Boolean(11392)
Match SimpleName: lhs(6575) to SimpleName: lhs(6588)
Match SimpleName: calleeArgShft(9060) to SimpleName: calleeArgShft(9073)
Match Block(5345) to Block(5345)
Match NumberLiteral: 0(5605) to NumberLiteral: 0(5605)
Match SingleVariableDeclaration(11951) to SingleVariableDeclaration(11954)
Match MethodInvocation(9589) to MethodInvocation(9602)
Match SimpleName: rhs(6478) to SimpleName: rhs(6491)
Match SimpleName: iCodeTop(4264) to SimpleName: iCodeTop(4264)
Match SimpleName: Number(11523) to SimpleName: Number(11526)
Match SimpleName: addByte(1766) to SimpleName: addByte(1766)
Match SimpleName: stackTop(6828) to SimpleName: stackTop(6841)
Match VariableDeclarationFragment(7486) to VariableDeclarationFragment(7499)
Match SimpleName: ts(61) to SimpleName: ts(61)
Match SimpleName: iCodeTop(4235) to SimpleName: iCodeTop(4235)
Match SimpleName: generateScriptICode(187) to SimpleName: generateScriptICode(187)
Match InfixExpression: ||(6390) to InfixExpression: ||(6403)
Match SimpleName: itsDoubleTableTop(4388) to SimpleName: itsDoubleTableTop(4388)
Match SimpleName: addGoto(3889) to SimpleName: addGoto(3889)
Match SimpleName: typeError1(8905) to SimpleName: typeError1(8918)
Match QualifiedName: array.length(4203) to QualifiedName: array.length(4203)
Match ArrayAccess(6050) to ArrayAccess(6063)
Match SimpleName: ScriptRuntime(9913) to SimpleName: ScriptRuntime(9926)
Match PrimitiveType: int(4325) to PrimitiveType: int(4325)
Match ExpressionStatement(7361) to ExpressionStatement(7374)
Match Modifier: private(11340) to Modifier: private(11343)
Match SimpleName: doubleWrap(8100) to SimpleName: doubleWrap(8113)
Match NumberLiteral: 0(3172) to NumberLiteral: 0(3172)
Match SimpleName: lhs(8357) to SimpleName: lhs(8370)
Match SimpleName: Node(1010) to SimpleName: Node(1010)
Match ExpressionStatement(9194) to ExpressionStatement(9207)
Match ReturnStatement(3762) to ReturnStatement(3762)
Match SimpleName: rhs(10130) to SimpleName: rhs(10143)
Match VariableDeclarationFragment(7815) to VariableDeclarationFragment(7828)
Match SimpleType: Object(8161) to SimpleType: Object(8174)
Match SimpleName: instructionThreshold(10719) to SimpleName: instructionThreshold(10722)
Match SimpleName: iCodeTop(3164) to SimpleName: iCodeTop(3164)
Match Assignment: =(3474) to Assignment: =(3474)
Match MethodInvocation(10633) to MethodInvocation(10636)
Match ExpressionStatement(6351) to ExpressionStatement(6364)
Match InfixExpression: >(3107) to InfixExpression: >(3107)
Match SimpleName: rhs(8731) to SimpleName: rhs(8744)
Match SimpleName: addShort(1655) to SimpleName: addShort(1655)
Match IfStatement(5755) to IfStatement(5768)
Match SimpleType: Object(8843) to SimpleType: Object(8856)
Match Assignment: =(12008) to Assignment: =(12011)
Match SimpleName: RETURN_UNDEF_ICODE(3443) to SimpleName: RETURN_UNDEF_ICODE(3443)
Match SimpleName: itsDoubleTableTop(842) to SimpleName: itsDoubleTableTop(842)
Match SimpleName: lhs(10057) to SimpleName: lhs(10070)
Match VariableDeclarationFragment(440) to VariableDeclarationFragment(440)
Match SimpleName: exType(10473) to SimpleName: exType(10476)
Match SimpleName: capacity(4484) to SimpleName: capacity(4484)
Match QualifiedName: itsData.itsMaxStack(2902) to QualifiedName: itsData.itsMaxStack(2902)
Match QualifiedName: TokenStream.GOTO(1429) to QualifiedName: TokenStream.GOTO(1429)
Match InfixExpression: +(8965) to InfixExpression: +(8978)
Match PrimitiveType: double(7090) to PrimitiveType: double(7103)
Match SimpleName: tree(239) to SimpleName: tree(239)
Match Assignment: =(6912) to Assignment: =(6925)
Match SimpleName: stackTop(10102) to SimpleName: stackTop(10115)
Match SimpleName: iCodeTop(2070) to SimpleName: iCodeTop(2070)
Match SimpleName: y(11358) to SimpleName: y(11361)
Match SimpleName: stack(9320) to SimpleName: stack(9333)
Match NumberLiteral: 1(5537) to NumberLiteral: 1(5537)
Match PrimitiveType: int(7402) to PrimitiveType: int(7415)
Match PostfixExpression: ++(4098) to PostfixExpression: ++(4098)
Match VariableDeclarationExpression(604) to VariableDeclarationExpression(604)
Match InfixExpression: !=(1109) to InfixExpression: !=(1109)
Match SwitchCase(5367) to SwitchCase(5367)
Match SimpleName: fn(5734) to SimpleName: fn(5734)
Match QualifiedName: FunctionNode.FUNCTION_STATEMENT(6190) to QualifiedName: FunctionNode.FUNCTION_STATEMENT(6203)
Match InstanceofExpression(11499) to InstanceofExpression(11502)
Match ArrayAccess(9289) to ArrayAccess(9302)
Match SimpleName: stack(7966) to SimpleName: stack(7979)
Match SimpleName: itsStackDepth(1225) to SimpleName: itsStackDepth(1225)
Match MethodInvocation(6138) to MethodInvocation(6151)
Match VariableDeclarationStatement(7970) to VariableDeclarationStatement(7983)
Match SimpleName: Object(11647) to SimpleName: Object(11650)
Match VariableDeclarationFragment(9144) to VariableDeclarationFragment(9157)
Match ExpressionStatement(10552) to ExpressionStatement(10555)
Match InfixExpression: ==(9148) to InfixExpression: ==(9161)
Match QualifiedName: TokenStream.LEAVEWITH(3090) to QualifiedName: TokenStream.LEAVEWITH(3090)
Match SimpleName: debuggerFrame(10344) to SimpleName: debuggerFrame(10347)
Match InfixExpression: +(6492) to InfixExpression: +(6505)
Match SimpleName: sDbl(11997) to SimpleName: sDbl(12000)
Match SimpleName: line(5313) to SimpleName: line(5313)
Match VariableDeclarationFragment(2403) to VariableDeclarationFragment(2403)
Match SimpleName: iCodeTop(1929) to SimpleName: iCodeTop(1929)
Match ExpressionStatement(10620) to ExpressionStatement(10623)
Match PostfixExpression: ++(2793) to PostfixExpression: ++(2793)
Match Assignment: =(3302) to Assignment: =(3302)
Match SimpleName: stack(11438) to SimpleName: stack(11441)
Match Assignment: =(6424) to Assignment: =(6437)
Match SimpleName: valBln(7017) to SimpleName: valBln(7030)
Match ExpressionStatement(355) to ExpressionStatement(355)
Match ThrowStatement(10693) to ThrowStatement(10696)
Match SimpleName: Scriptable(8767) to SimpleName: Scriptable(8780)
Match SimpleName: Scriptable(11004) to SimpleName: Scriptable(11007)
Match MethodInvocation(3480) to MethodInvocation(3480)
Match MethodInvocation(8316) to MethodInvocation(8329)
Match ArrayAccess(7702) to ArrayAccess(7715)
Match SimpleName: i(5997) to SimpleName: i(6010)
Match BreakStatement(3410) to BreakStatement(3410)
Match ExpressionStatement(9548) to ExpressionStatement(9561)
Match SimpleType: ObjArray(409) to SimpleType: ObjArray(409)
Match ExpressionStatement(10163) to ExpressionStatement(10176)
Match ExpressionStatement(1924) to ExpressionStatement(1924)
Match Block(2241) to Block(2241)
Match CastExpression(10711) to CastExpression(10714)
Match MethodInvocation(12212) to MethodInvocation(12215)
Match MethodInvocation(4432) to MethodInvocation(4432)
Match SimpleName: jumpStart(3993) to SimpleName: jumpStart(3993)
Match SimpleType: LabelTable(12269) to SimpleType: LabelTable(12272)
Match Assignment: =(10456) to Assignment: =(10459)
Match MethodInvocation(1820) to MethodInvocation(1820)
Match SimpleName: str(4437) to SimpleName: str(4437)
Match ExpressionStatement(9101) to ExpressionStatement(9114)
Match ArrayAccess(9640) to ArrayAccess(9653)
Match SimpleName: lIntValue(7458) to SimpleName: lIntValue(7471)
Match Modifier: private(3765) to Modifier: private(3765)
Match VariableDeclarationStatement(6955) to VariableDeclarationStatement(6968)
Match SimpleName: OTHER(10541) to SimpleName: OTHER(10544)
Match MethodInvocation(1680) to MethodInvocation(1680)
Match MethodInvocation(1463) to MethodInvocation(1463)
Match MethodInvocation(3654) to MethodInvocation(3654)
Match BreakStatement(2204) to BreakStatement(2204)
Match PrimitiveType: int(4531) to PrimitiveType: int(4531)
Match SwitchCase(5413) to SwitchCase(5413)
Match VariableDeclarationFragment(7069) to VariableDeclarationFragment(7082)
Match StringLiteral: "ICode dump, for "(4804) to StringLiteral: "ICode dump, for "(4804)
Match BreakStatement(10537) to BreakStatement(10540)
Match NumberLiteral: 3(4634) to NumberLiteral: 3(4634)
Match ExpressionStatement(475) to ExpressionStatement(475)
Match QualifiedName: TokenStream.GETVAR(3451) to QualifiedName: TokenStream.GETVAR(3451)
Match SimpleName: InterpreterData(5114) to SimpleName: InterpreterData(5114)
Match SimpleType: IOException(990) to SimpleType: IOException(990)
Match ExpressionStatement(6348) to ExpressionStatement(6361)
Match ClassInstanceCreation(10378) to ClassInstanceCreation(10381)
Match SwitchCase(9522) to SwitchCase(9535)
Match PrimitiveType: int(3719) to PrimitiveType: int(3719)
Match SimpleName: Number(11356) to SimpleName: Number(11359)
Match InfixExpression: <<(4630) to InfixExpression: <<(4630)
Match SimpleName: cx(665) to SimpleName: cx(665)
Match ExpressionStatement(4159) to ExpressionStatement(4159)
Match SimpleName: child(1230) to SimpleName: child(1230)
Match SwitchCase(7314) to SwitchCase(7327)
Match SimpleName: stack(9203) to SimpleName: stack(9216)
Match MethodInvocation(1114) to MethodInvocation(1114)
Match SimpleName: try_pc(10644) to SimpleName: try_pc(10647)
Match SimpleName: stackTop(9508) to SimpleName: stackTop(9521)
Match SimpleName: fnName(5787) to SimpleName: fnName(5800)
Match IfStatement(5793) to IfStatement(5806)
Match ArrayAccess(11811) to ArrayAccess(11814)
Match Assignment: =(10220) to Assignment: =(10233)
Match Block(907) to Block(907)
Match SimpleName: InterpreterData(12229) to SimpleName: InterpreterData(12232)
Match SimpleName: instructionCount(7029) to SimpleName: instructionCount(7042)
Match ExpressionStatement(10604) to ExpressionStatement(10607)
Match SimpleName: N(606) to SimpleName: N(606)
Match ExpressionStatement(2838) to ExpressionStatement(2838)
Match NumberLiteral: 2(7943) to NumberLiteral: 2(7956)
Match IfStatement(561) to IfStatement(561)
Match StringLiteral: " "(5246) to StringLiteral: " "(5246)
Match VariableDeclarationStatement(9944) to VariableDeclarationStatement(9957)
Match SimpleName: val(9997) to SimpleName: val(10010)
Match Block(6201) to Block(6214)
Match SwitchCase(5445) to SwitchCase(5445)
Match SimpleName: rhs(6572) to SimpleName: rhs(6585)
Match SingleVariableDeclaration(5712) to SingleVariableDeclaration(5712)
Match SimpleName: regexp(633) to SimpleName: regexp(633)
Match SimpleName: tryStackTop(5971) to SimpleName: tryStackTop(5984)
Match ArrayType: Object[](11603) to ArrayType: Object[](11606)
Match VariableDeclarationFragment(5968) to VariableDeclarationFragment(5981)
Match IfStatement(10774) to IfStatement(10777)
Match SimpleName: Object(10055) to SimpleName: Object(10068)
Match SimpleName: Object(9582) to SimpleName: Object(9595)
Match SimpleName: stackTop(9234) to SimpleName: stackTop(9247)
Match SimpleName: iCodeTop(2875) to SimpleName: iCodeTop(2875)
Match SimpleName: getIndex(4562) to SimpleName: getIndex(4562)
Match VariableDeclarationStatement(7070) to VariableDeclarationStatement(7083)
Match Assignment: =(3016) to Assignment: =(3016)
Match NumberLiteral: 0(4935) to NumberLiteral: 0(4935)
Match SimpleName: toObject(8790) to SimpleName: toObject(8803)
Match SimpleName: generateICode(2068) to SimpleName: generateICode(2068)
Match NumberLiteral: 0xFF(4574) to NumberLiteral: 0xFF(4574)
Match InfixExpression: ==(7003) to InfixExpression: ==(7016)
Match SimpleName: stack(11181) to SimpleName: stack(11184)
Match SimpleName: rhs(8325) to SimpleName: rhs(8338)
Match MethodInvocation(3916) to MethodInvocation(3916)
Match SimpleName: i(5086) to SimpleName: i(5086)
Match QualifiedName: TokenStream.SETELEM(5392) to QualifiedName: TokenStream.SETELEM(5392)
Match ExpressionStatement(8935) to ExpressionStatement(8948)
Match SimpleName: catch_offset(10589) to SimpleName: catch_offset(10592)
Match PrefixExpression: !(2575) to PrefixExpression: !(2575)
Match Assignment: +=(8541) to Assignment: +=(8554)
Match Assignment: +=(5174) to Assignment: +=(5174)
Match MethodInvocation(5185) to MethodInvocation(5185)
Match NumberLiteral: 1(11289) to NumberLiteral: 1(11292)
Match VariableDeclarationFragment(8410) to VariableDeclarationFragment(8423)
Match SimpleName: pc(8581) to SimpleName: pc(8594)
Match SimpleName: stack(6582) to SimpleName: stack(6595)
Match SimpleName: OTHER(10426) to SimpleName: OTHER(10429)
Match SimpleName: i(6172) to SimpleName: i(6185)
Match InfixExpression: +(5169) to InfixExpression: +(5169)
Match InfixExpression: !=(10600) to InfixExpression: !=(10603)
Match SimpleName: scope(9587) to SimpleName: scope(9600)
Match ExpressionStatement(7819) to ExpressionStatement(7832)
Match SimpleName: debuggerFrame(6210) to SimpleName: debuggerFrame(6223)
Match SimpleName: Object(8017) to SimpleName: Object(8030)
Match SimpleName: badTree(2234) to SimpleName: badTree(2234)
Match ExpressionStatement(3659) to ExpressionStatement(3659)
Match ExpressionStatement(5219) to ExpressionStatement(5219)
Match SimpleName: rDbl(6486) to SimpleName: rDbl(6499)
Match SimpleType: Node(3671) to SimpleType: Node(3671)
Match SimpleName: node(2235) to SimpleName: node(2235)
Match SimpleName: child(1498) to SimpleName: child(1498)
Match SingleVariableDeclaration(5821) to SingleVariableDeclaration(5834)
Match SwitchStatement(10381) to SwitchStatement(10384)
Match VariableDeclarationFragment(3181) to VariableDeclarationFragment(3181)
Match Assignment: =(7415) to Assignment: =(7428)
Match QualifiedName: TokenStream.ELEMINC(8321) to QualifiedName: TokenStream.ELEMINC(8334)
Match SimpleName: getOperation(2252) to SimpleName: getOperation(2252)
Match Modifier: final(5874) to Modifier: final(5887)
Match ParenthesizedExpression(1569) to ParenthesizedExpression(1569)
Match PrimitiveType: byte(734) to PrimitiveType: byte(734)
Match ExpressionStatement(8511) to ExpressionStatement(8524)
Match PrimitiveType: int(11946) to PrimitiveType: int(11949)
Match SimpleName: stackTop(9721) to SimpleName: stackTop(9734)
Match SimpleName: pc(10300) to SimpleName: pc(10303)
Match ConditionalExpression(6860) to ConditionalExpression(6873)
Match QualifiedName: TokenStream.CLOSURE(1066) to QualifiedName: TokenStream.CLOSURE(1066)
Match QualifiedName: Node.LABEL_PROP(3834) to QualifiedName: Node.LABEL_PROP(3834)
Match SimpleName: argCount(6116) to SimpleName: argCount(6129)
Match SimpleName: node(2114) to SimpleName: node(2114)
Match Assignment: =(9547) to Assignment: =(9560)
Match SimpleName: lhs(6835) to SimpleName: lhs(6848)
Match SimpleName: iCodeTop(1724) to SimpleName: iCodeTop(1724)
Match SwitchCase(5272) to SwitchCase(5272)
Match SimpleName: stackTop(11446) to SimpleName: stackTop(11449)
Match NumberLiteral: 1(8887) to NumberLiteral: 1(8900)
Match QualifiedName: TokenStream.TRY(3100) to QualifiedName: TokenStream.TRY(3100)
Match SingleVariableDeclaration(5846) to SingleVariableDeclaration(5859)
Match SimpleType: Scriptable(10740) to SimpleType: Scriptable(10743)
Match NumberLiteral: 3(7023) to NumberLiteral: 3(7036)
Match SimpleName: getProp(3676) to SimpleName: getProp(3676)
Match SimpleName: INVOCATION_COST(8933) to SimpleName: INVOCATION_COST(8946)
Match VariableDeclarationFragment(6370) to VariableDeclarationFragment(6383)
Match VariableDeclarationStatement(11903) to VariableDeclarationStatement(11906)
Match CastExpression(9866) to CastExpression(9879)
Match MethodInvocation(3133) to MethodInvocation(3133)
Match SimpleName: getDouble(2917) to SimpleName: getDouble(2917)
Match SimpleType: String(4784) to SimpleType: String(4784)
Match ExpressionStatement(5195) to ExpressionStatement(5195)
Match Assignment: =(10232) to Assignment: =(10245)
Match MethodDeclaration(686) to MethodDeclaration(686)
Match InfixExpression: !=(1144) to InfixExpression: !=(1144)
Match SingleVariableDeclaration(12169) to SingleVariableDeclaration(12172)
Match ExpressionStatement(4224) to ExpressionStatement(4224)
Match SimpleName: x(10893) to SimpleName: x(10896)
Match SimpleName: addGoto(3340) to SimpleName: addGoto(3340)
Match IfStatement(4007) to IfStatement(4007)
Match SimpleName: FunctionNode(281) to SimpleName: FunctionNode(281)
Match SimpleName: pc(8570) to SimpleName: pc(8583)
Match MethodInvocation(9603) to MethodInvocation(9616)
Match SimpleName: i(6022) to SimpleName: i(6035)
Match Block(9036) to Block(9049)
Match SingleVariableDeclaration(536) to SingleVariableDeclaration(536)
Match Block(2803) to Block(2803)
Match Block(6199) to Block(6212)
Match SingleVariableDeclaration(280) to SingleVariableDeclaration(280)
Match ExpressionStatement(7571) to ExpressionStatement(7584)
Match SimpleName: fn(5810) to SimpleName: fn(5823)
Match Block(1539) to Block(1539)
Match SimpleName: iCodeTop(2325) to SimpleName: iCodeTop(2325)
Match Modifier: final(12123) to Modifier: final(12126)
Match QualifiedName: jsi.itsInFunctionFlag(495) to QualifiedName: jsi.itsInFunctionFlag(495)
Match QualifiedName: TokenStream.TYPEOFNAME(9169) to QualifiedName: TokenStream.TYPEOFNAME(9182)
Match PrefixExpression: ++(9407) to PrefixExpression: ++(9420)
Match SimpleType: String(348) to SimpleType: String(348)
Match VariableDeclarationStatement(569) to VariableDeclarationStatement(569)
Match ArrayAccess(9408) to ArrayAccess(9421)
Match NumberLiteral: 2(4126) to NumberLiteral: 2(4126)
Match NumberLiteral: 1(6522) to NumberLiteral: 1(6535)
Match VariableDeclarationStatement(8330) to VariableDeclarationStatement(8343)
Match ArrayAccess(7094) to ArrayAccess(7107)
Match SimpleName: Scriptable(192) to SimpleName: Scriptable(192)
Match SimpleName: ScriptRuntime(11173) to SimpleName: ScriptRuntime(11176)
Match MethodInvocation(2104) to MethodInvocation(2104)
Match SimpleName: index(1073) to SimpleName: index(1073)
Match Assignment: =(3240) to Assignment: =(3240)
Match SimpleName: iCodeTop(3054) to SimpleName: iCodeTop(3054)
Match NumberLiteral: 0(10787) to NumberLiteral: 0(10790)
Match VariableDeclarationStatement(5761) to VariableDeclarationStatement(5774)
Match SimpleName: iCodeTop(2137) to SimpleName: iCodeTop(2137)
Match Dimension(11756) to Dimension(11759)
Match ExpressionStatement(8106) to ExpressionStatement(8119)
Match Assignment: =(1753) to Assignment: =(1753)
Match SimpleType: Object(10204) to SimpleType: Object(10217)
Match SimpleType: Number(11047) to SimpleType: Number(11050)
Match InstanceofExpression(10501) to InstanceofExpression(10504)
Match SimpleName: arraycopy(4367) to SimpleName: arraycopy(4367)
Match Assignment: =(6337) to Assignment: =(6350)
Match VariableDeclarationStatement(8353) to VariableDeclarationStatement(8366)
Match PrimitiveType: int(5180) to PrimitiveType: int(5180)
Match SimpleName: stack(9184) to SimpleName: stack(9197)
Match Assignment: +=(5068) to Assignment: +=(5068)
Match SimpleName: iCodeTop(4084) to SimpleName: iCodeTop(4084)
Match NumberLiteral: 64(4345) to NumberLiteral: 64(4345)
Match SimpleName: addByte(3972) to SimpleName: addByte(3972)
Match SimpleName: token(4847) to SimpleName: token(4847)
Match QualifiedName: itsData.itsDoubleTable(4341) to QualifiedName: itsData.itsDoubleTable(4341)
Match ArrayAccess(10060) to ArrayAccess(10073)
Match Modifier: private(4324) to Modifier: private(4324)
Match ExpressionStatement(9907) to ExpressionStatement(9920)
Match Assignment: =(2040) to Assignment: =(2040)
Match SimpleName: stack(8407) to SimpleName: stack(8420)
Match SimpleName: iter(779) to SimpleName: iter(779)
Match MethodInvocation(8139) to MethodInvocation(8152)
Match NumberLiteral: 2(5318) to NumberLiteral: 2(5318)
Match QualifiedName: TokenStream.GETPROP(5398) to QualifiedName: TokenStream.GETPROP(5398)
Match InfixExpression: ==(8895) to InfixExpression: ==(8908)
Match Block(8693) to Block(8706)
Match VariableDeclarationFragment(8987) to VariableDeclarationFragment(9000)
Match InfixExpression: ==(8639) to InfixExpression: ==(8652)
Match SimpleName: tree(88) to SimpleName: tree(88)
Match InfixExpression: +(7024) to InfixExpression: +(7037)
Match SimpleName: iCodeTop(3919) to SimpleName: iCodeTop(3919)
Match MethodInvocation(1651) to MethodInvocation(1651)
Match Assignment: =(2894) to Assignment: =(2894)
Match SimpleName: String(8274) to SimpleName: String(8287)
Match SimpleName: child(1931) to SimpleName: child(1931)
Match SimpleName: exType(10431) to SimpleName: exType(10434)
Match ArrayAccess(9503) to ArrayAccess(9516)
Match CastExpression(4053) to CastExpression(4053)
Match SimpleName: iCode(8557) to SimpleName: iCode(8570)
Match VariableDeclarationStatement(2277) to VariableDeclarationStatement(2277)
Match VariableDeclarationFragment(9063) to VariableDeclarationFragment(9076)
Match SimpleType: String(5757) to SimpleType: String(5770)
Match IfStatement(6843) to IfStatement(6856)
Match Block(11732) to Block(11735)
Match VariableDeclarationFragment(5978) to VariableDeclarationFragment(5991)
Match BooleanLiteral: true(10557) to BooleanLiteral: true(10560)
Match InfixExpression: +(4635) to InfixExpression: +(4635)
Match SimpleName: fn(1043) to SimpleName: fn(1043)
Match NullLiteral(373) to NullLiteral(373)
Match SimpleName: getArgsArray(6112) to SimpleName: getArgsArray(6125)
Match ClassInstanceCreation(10813) to ClassInstanceCreation(10816)
Match Block(5350) to Block(5350)
Match SimpleName: Interpreter(7) to SimpleName: Interpreter(7)
Match Modifier: private(4068) to Modifier: private(4068)
Match MethodInvocation(1339) to MethodInvocation(1339)
Match Assignment: =(12001) to Assignment: =(12004)
Match VariableDeclarationStatement(9351) to VariableDeclarationStatement(9364)
Match SimpleType: Object(10487) to SimpleType: Object(10490)
Match SimpleName: ScriptRuntime(6617) to SimpleName: ScriptRuntime(6630)
Match PostfixExpression: --(3658) to PostfixExpression: --(3658)
Match IfStatement(10797) to IfStatement(10800)
Match ExpressionStatement(2014) to ExpressionStatement(2014)
Match SimpleName: Object(11347) to SimpleName: Object(11350)
Match VariableDeclarationFragment(7725) to VariableDeclarationFragment(7738)
Match SimpleName: VAR_SHFT(6047) to SimpleName: VAR_SHFT(6060)
Match SimpleName: lhs(8371) to SimpleName: lhs(8384)
Match MethodInvocation(2390) to MethodInvocation(2390)
Match SwitchCase(5433) to SwitchCase(5433)
Match SimpleName: sDbl(9431) to SimpleName: sDbl(9444)
Match Assignment: =(2199) to Assignment: =(2199)
Match SimpleName: Object(8381) to SimpleName: Object(8394)
Match SimpleName: resolveForwardGoto(1989) to SimpleName: resolveForwardGoto(1989)
Match SimpleName: itsStackDepth(1081) to SimpleName: itsStackDepth(1081)
Match Modifier: private(12258) to Modifier: private(12261)
Match ParenthesizedExpression(4953) to ParenthesizedExpression(4953)
Match InfixExpression: ==(303) to InfixExpression: ==(303)
Match SingleVariableDeclaration(12080) to SingleVariableDeclaration(12083)
Match ArrayType: double[](12126) to ArrayType: double[](12129)
Match NumberLiteral: 2(9245) to NumberLiteral: 2(9258)
Match ExpressionStatement(1703) to ExpressionStatement(1703)
Match MethodInvocation(3511) to MethodInvocation(3511)
Match InfixExpression: +(6049) to InfixExpression: +(6062)
Match SwitchCase(9933) to SwitchCase(9946)
Match SwitchCase(5467) to SwitchCase(5467)
Match Assignment: =(2647) to Assignment: =(2647)
Match SimpleName: activation(12043) to SimpleName: activation(12046)
Match ExpressionStatement(3918) to ExpressionStatement(3918)
Match SimpleName: String(4708) to SimpleName: String(4708)
Match SimpleName: stackTop(6739) to SimpleName: stackTop(6752)
Match SimpleType: Object(9000) to SimpleType: Object(9013)
Match SimpleName: getIndex(7890) to SimpleName: getIndex(7903)
Match Assignment: =(2458) to Assignment: =(2458)
Match SimpleName: name(2580) to SimpleName: name(2580)
Match VariableDeclarationStatement(6293) to VariableDeclarationStatement(6306)
Match SwitchCase(5423) to SwitchCase(5423)
Match SimpleType: EcmaError(10465) to SimpleType: EcmaError(10468)
Match MethodInvocation(248) to MethodInvocation(248)
Match VariableDeclarationFragment(1377) to VariableDeclarationFragment(1377)
Match SimpleName: getNext(1213) to SimpleName: getNext(1213)
Match SingleVariableDeclaration(284) to SingleVariableDeclaration(284)
Match SimpleName: sDbl(7417) to SimpleName: sDbl(7430)
Match SimpleName: childCount(1708) to SimpleName: childCount(1708)
Match NumberLiteral: 0(6076) to NumberLiteral: 0(6089)
Match SimpleType: InterpreterData(12230) to SimpleType: InterpreterData(12233)
Match MethodInvocation(7907) to MethodInvocation(7920)
Match QualifiedName: itsData.itsMaxStack(3012) to QualifiedName: itsData.itsMaxStack(3012)
Match SimpleName: ScriptRuntime(6846) to SimpleName: ScriptRuntime(6859)
Match VariableDeclarationStatement(8047) to VariableDeclarationStatement(8060)
Match QualifiedName: itsData.argNames(898) to QualifiedName: itsData.argNames(898)
Match Assignment: =(2728) to Assignment: =(2728)
Match SimpleName: itsVariableTable(872) to SimpleName: itsVariableTable(872)
Match SimpleName: y(11383) to SimpleName: y(11386)
Match SimpleName: val(6981) to SimpleName: val(6994)
Match MethodInvocation(7959) to MethodInvocation(7972)
Match MethodInvocation(2450) to MethodInvocation(2450)
Match ExpressionStatement(11713) to ExpressionStatement(11716)
Match ExpressionStatement(9133) to ExpressionStatement(9146)
Match SimpleType: Script(12161) to SimpleType: Script(12164)
Match ExpressionStatement(488) to ExpressionStatement(488)
Match VariableDeclarationFragment(10061) to VariableDeclarationFragment(10074)
Match MethodDeclaration(956) to MethodDeclaration(956)
Match Assignment: +=(5132) to Assignment: +=(5132)
Match IfStatement(1792) to IfStatement(1792)
Match QualifiedName: TokenStream.VARDEC(4988) to QualifiedName: TokenStream.VARDEC(4988)
Match QualifiedName: TokenStream.GETSCOPEPARENT(5366) to QualifiedName: TokenStream.GETSCOPEPARENT(5366)
Match InfixExpression: ==(8027) to InfixExpression: ==(8040)
Match SimpleName: stack_double(7720) to SimpleName: stack_double(7733)
Match SimpleName: line(10350) to SimpleName: line(10353)
Match VariableDeclarationStatement(7789) to VariableDeclarationStatement(7802)
Match SimpleName: exception(9828) to SimpleName: exception(9841)
Match SimpleName: debugSource(384) to SimpleName: debugSource(384)
Match PrimitiveType: boolean(3183) to PrimitiveType: boolean(3183)
Match MethodInvocation(2253) to MethodInvocation(2253)
Match SimpleName: generateICode(2245) to SimpleName: generateICode(2245)
Match Dimension(845) to Dimension(845)
Match Assignment: =(8363) to Assignment: =(8376)
Match ParenthesizedExpression(6529) to ParenthesizedExpression(6542)
Match SimpleName: sDbl(6594) to SimpleName: sDbl(6607)
Match SimpleName: iCode(5278) to SimpleName: iCode(5278)
Match Modifier: static(12099) to Modifier: static(12102)
Match VariableDeclarationStatement(6808) to VariableDeclarationStatement(6821)
Match SimpleName: child(1182) to SimpleName: child(1182)
Match ArrayAccess(11221) to ArrayAccess(11224)
Match Assignment: =(2528) to Assignment: =(2528)
Match Assignment: +=(5253) to Assignment: +=(5253)
Match SimpleName: valBln(6521) to SimpleName: valBln(6534)
Match MethodInvocation(6152) to MethodInvocation(6165)
Match Assignment: =(11639) to Assignment: =(11642)
Match VariableDeclarationFragment(12192) to VariableDeclarationFragment(12195)
Match SimpleName: stack(6761) to SimpleName: stack(6774)
Match SimpleName: lIntValue(7441) to SimpleName: lIntValue(7454)
Match SimpleName: index(11710) to SimpleName: index(11713)
Match ExpressionStatement(2722) to ExpressionStatement(2722)
Match SimpleName: do_eq(6897) to SimpleName: do_eq(6910)
Match PrefixExpression: -(8690) to PrefixExpression: -(8703)
Match SimpleType: Node(1797) to SimpleType: Node(1797)
Match SwitchCase(2163) to SwitchCase(2163)
Match MethodInvocation(10784) to MethodInvocation(10787)
Match InfixExpression: +(20) to InfixExpression: +(20)
Match SingleVariableDeclaration(4029) to SingleVariableDeclaration(4029)
Match SimpleName: scope(8373) to SimpleName: scope(8386)
Match MethodInvocation(3806) to MethodInvocation(3806)
Match NumberLiteral: 0xFF(4615) to NumberLiteral: 0xFF(4615)
Match SimpleName: rDbl(10962) to SimpleName: rDbl(10965)
Match SimpleName: index(5239) to SimpleName: index(5239)
Match VariableDeclarationFragment(10948) to VariableDeclarationFragment(10951)
Match CastExpression(11208) to CastExpression(11211)
Match MethodInvocation(486) to MethodInvocation(486)
Match Block(8926) to Block(8939)
Match SimpleName: getProp(1760) to SimpleName: getProp(1760)
Match ExpressionStatement(9753) to ExpressionStatement(9766)
Match SimpleType: Scriptable(11669) to SimpleType: Scriptable(11672)
Match VariableDeclarationStatement(1295) to VariableDeclarationStatement(1295)
Match SimpleName: stackTop(8085) to SimpleName: stackTop(8098)
Match MethodInvocation(10115) to MethodInvocation(10128)
Match PrimitiveType: int(3137) to PrimitiveType: int(3137)
Match SimpleType: FunctionNode(453) to SimpleType: FunctionNode(453)
Match SimpleName: fnName(5762) to SimpleName: fnName(5775)
Match Block(1704) to Block(1704)
Match QualifiedName: TokenStream.URSH(2160) to QualifiedName: TokenStream.URSH(2160)
Match SimpleName: scope(8201) to SimpleName: scope(8214)
Match SimpleName: do_add(10960) to SimpleName: do_add(10963)
Match IfStatement(1090) to IfStatement(1090)
Match SimpleName: stack(7509) to SimpleName: stack(7522)
Match SimpleName: iCode(6318) to SimpleName: iCode(6331)
Match SimpleName: line(10331) to SimpleName: line(10334)
Match QualifiedName: cx.instructionCount(8936) to QualifiedName: cx.instructionCount(8949)
Match SimpleName: child(2448) to SimpleName: child(2448)
Match SimpleName: lhs(10994) to SimpleName: lhs(10997)
Match VariableDeclarationFragment(7751) to VariableDeclarationFragment(7764)
Match SimpleName: putIntProp(517) to SimpleName: putIntProp(517)
Match SimpleName: iCodeTop(2134) to SimpleName: iCodeTop(2134)
Match SimpleName: stackTop(7869) to SimpleName: stackTop(7882)
Match SimpleName: skippyJumpStart(3373) to SimpleName: skippyJumpStart(3373)
Match ExpressionStatement(8542) to ExpressionStatement(8555)
Match SimpleName: getOrdinal(2768) to SimpleName: getOrdinal(2768)
Match Modifier: private(4706) to Modifier: private(4706)
Match InfixExpression: ==(11568) to InfixExpression: ==(11571)
Match IfStatement(2988) to IfStatement(2988)
Match ArrayAccess(9645) to ArrayAccess(9658)
Match SimpleName: LOCAL_SHFT(9969) to SimpleName: LOCAL_SHFT(9982)
Match InfixExpression: !=(10392) to InfixExpression: !=(10395)
Match SimpleName: popActivation(10680) to SimpleName: popActivation(10683)
Match SimpleName: stackTop(7589) to SimpleName: stackTop(7602)
Match IfStatement(11309) to IfStatement(11312)
Match MethodInvocation(3029) to MethodInvocation(3029)
Match SimpleName: doubleWrap(9829) to SimpleName: doubleWrap(9842)
Match SimpleName: lhs(11112) to SimpleName: lhs(11115)
Match ExpressionStatement(8493) to ExpressionStatement(8506)
Match BreakStatement(9804) to BreakStatement(9817)
Match ArrayAccess(6763) to ArrayAccess(6776)
Match ExpressionStatement(9398) to ExpressionStatement(9411)
Match SingleVariableDeclaration(915) to SingleVariableDeclaration(915)
Match SimpleName: scope(11910) to SimpleName: scope(11913)
Match SimpleName: cx(6193) to SimpleName: cx(6206)
Match ArrayAccess(11030) to ArrayAccess(11033)
Match PrimitiveType: int(11972) to PrimitiveType: int(11975)
Match QualifiedName: TokenStream.CALLSPECIAL(5021) to QualifiedName: TokenStream.CALLSPECIAL(5021)
Match ExpressionStatement(10343) to ExpressionStatement(10346)
Match SimpleName: iter(792) to SimpleName: iter(792)
Match IfStatement(421) to IfStatement(421)
Match ArrayAccess(6790) to ArrayAccess(6803)
Match MethodInvocation(9296) to MethodInvocation(9309)
Match SimpleName: maxVars(5896) to SimpleName: maxVars(5909)
Match IfStatement(10694) to IfStatement(10697)
Match FieldDeclaration(12293) to FieldDeclaration(12296)
Match SimpleName: stack(9797) to SimpleName: stack(9810)
Match InfixExpression: &&(3197) to InfixExpression: &&(3197)
Match SimpleName: iCodeTop(2832) to SimpleName: iCodeTop(2832)
Match SimpleName: setParentScope(5743) to SimpleName: setParentScope(5743)
Match SimpleName: lhs(8042) to SimpleName: lhs(8055)
Match ExpressionStatement(8141) to ExpressionStatement(8154)
Match SimpleName: childType(1618) to SimpleName: childType(1618)
Match Assignment: =(244) to Assignment: =(244)
Match SimpleName: addByte(1742) to SimpleName: addByte(1742)
Match MethodInvocation(5338) to MethodInvocation(5338)
Match QualifiedName: idata.securityDomain(12150) to QualifiedName: idata.securityDomain(12153)
Match InfixExpression: +(6028) to InfixExpression: +(6041)
Match SimpleName: lDbl(6416) to SimpleName: lDbl(6429)
Match Modifier: static(11747) to Modifier: static(11750)
Match ExpressionStatement(11307) to ExpressionStatement(11310)
Match SimpleName: icode(4712) to SimpleName: icode(4712)
Match SimpleName: Object(8160) to SimpleName: Object(8173)
Match SimpleName: generateICode(2447) to SimpleName: generateICode(2447)
Match SimpleName: pcPrevBranch(6295) to SimpleName: pcPrevBranch(6308)
Match SwitchCase(5550) to SwitchCase(5550)
Match SimpleName: getProp(295) to SimpleName: getProp(295)
Match SimpleName: name(8566) to SimpleName: name(8579)
Match SwitchCase(2173) to SwitchCase(2173)
Match SimpleName: rhs(8334) to SimpleName: rhs(8347)
Match ArrayAccess(9853) to ArrayAccess(9866)
Match InfixExpression: ||(11027) to InfixExpression: ||(11030)
Match VariableDeclarationFragment(11468) to VariableDeclarationFragment(11471)
Match Assignment: +=(5694) to Assignment: +=(5694)
Match VariableDeclarationFragment(8387) to VariableDeclarationFragment(8400)
Match NumberLiteral: 4(9127) to NumberLiteral: 4(9140)
Match NumberLiteral: 0(4951) to NumberLiteral: 0(4951)
Match ExpressionStatement(8403) to ExpressionStatement(8416)
Match IfStatement(9716) to IfStatement(9729)
Match Assignment: *=(4486) to Assignment: *=(4486)
Match ExpressionStatement(2180) to ExpressionStatement(2180)
Match SingleVariableDeclaration(5835) to SingleVariableDeclaration(5848)
Match VariableDeclarationStatement(8998) to VariableDeclarationStatement(9011)
Match Assignment: +=(7061) to Assignment: +=(7074)
Match MethodInvocation(874) to MethodInvocation(874)
Match QualifiedName: TokenStream.NAMEINC(9337) to QualifiedName: TokenStream.NAMEINC(9350)
Match SimpleName: scope(6194) to SimpleName: scope(6207)
Match MethodInvocation(3876) to MethodInvocation(3876)
Match SimpleName: JavaScriptException(9863) to SimpleName: JavaScriptException(9876)
Match SimpleName: stackTop(10166) to SimpleName: stackTop(10179)
Match VariableDeclarationFragment(16) to VariableDeclarationFragment(16)
Match SimpleName: addForwardGoto(2029) to SimpleName: addForwardGoto(2029)
Match QualifiedName: fn.itsUseDynamicScope(5750) to QualifiedName: fn.itsUseDynamicScope(5761)
Match VariableDeclarationStatement(1910) to VariableDeclarationStatement(1910)
Match ReturnStatement(954) to ReturnStatement(954)
Match SimpleName: fnOrScript(9511) to SimpleName: fnOrScript(9524)
Match VariableDeclarationFragment(7095) to VariableDeclarationFragment(7108)
Match SimpleName: getIndex(9311) to SimpleName: getIndex(9324)
Match Block(9038) to Block(9051)
Match QualifiedName: cx.instructionCount(8922) to QualifiedName: cx.instructionCount(8935)
Match Block(7766) to Block(7779)
Match SimpleName: iCode(4621) to SimpleName: iCode(4621)
Match SimpleName: getExistingIntProp(1059) to SimpleName: getExistingIntProp(1059)
Match ParenthesizedExpression(10493) to ParenthesizedExpression(10496)
Match ReturnStatement(4106) to ReturnStatement(4106)
Match ExpressionStatement(8318) to ExpressionStatement(8331)
Match SimpleName: itsStrings(756) to SimpleName: itsStrings(756)
Match PrimitiveType: int(7440) to PrimitiveType: int(7453)
Match SimpleName: pc(7046) to SimpleName: pc(7059)
Match SimpleName: Loop(6316) to SimpleName: Loop(6329)
Match ExpressionStatement(10652) to ExpressionStatement(10655)
Match InfixExpression: &&(2576) to InfixExpression: &&(2576)
Match ExpressionStatement(3436) to ExpressionStatement(3436)
Match SimpleName: stackTop(7760) to SimpleName: stackTop(7773)
Match ArrayAccess(6565) to ArrayAccess(6578)
Match Assignment: =(1534) to Assignment: =(1534)
Match SimpleName: iCodeTop(3028) to SimpleName: iCodeTop(3028)
Match Assignment: =(2837) to Assignment: =(2837)
Match SimpleType: String(7887) to SimpleType: String(7900)
Match SimpleName: slot(9612) to SimpleName: slot(9625)
Match SimpleName: iCodeTop(2194) to SimpleName: iCodeTop(2194)
Match VariableDeclarationFragment(4854) to VariableDeclarationFragment(4854)
Match SimpleName: scope(5824) to SimpleName: scope(5837)
Match Modifier: public(96) to Modifier: public(96)
Match InfixExpression: ==(10586) to InfixExpression: ==(10589)
Match Block(2419) to Block(2419)
Match SimpleName: node(3456) to SimpleName: node(3456)
Match SimpleName: iCodeTop(1808) to SimpleName: iCodeTop(1808)
Match Assignment: =(7039) to Assignment: =(7052)
Match SimpleName: stackTop(9831) to SimpleName: stackTop(9844)
Match SimpleName: observeInstructionCount(7033) to SimpleName: observeInstructionCount(7046)
Match SimpleType: TokenStream(76) to SimpleType: TokenStream(76)
Match BreakStatement(2332) to BreakStatement(2332)
Match SimpleName: getIndex(10298) to SimpleName: getIndex(10301)
Match Block(7915) to Block(7928)
Match SimpleName: System(4512) to SimpleName: System(4512)
Match QualifiedName: itsData.itsDoubleTable.length(841) to QualifiedName: itsData.itsDoubleTable.length(841)
Match MethodInvocation(6197) to MethodInvocation(6210)
Match SimpleName: stack(10980) to SimpleName: stack(10983)
Match MethodInvocation(5128) to MethodInvocation(5128)
Match SimpleName: left(641) to SimpleName: left(641)
Match NumberLiteral: 5(8582) to NumberLiteral: 5(8595)
Match SimpleName: DBL_MRK(10154) to SimpleName: DBL_MRK(10167)
Match Block(9506) to Block(9519)
Match InfixExpression: +(11290) to InfixExpression: +(11293)
Match NumberLiteral: 2(5552) to NumberLiteral: 2(5552)
Match SingleVariableDeclaration(4117) to SingleVariableDeclaration(4117)
Match Assignment: =(6795) to Assignment: =(6808)
Match Assignment: =(3110) to Assignment: =(3110)
Match ExpressionStatement(1151) to ExpressionStatement(1151)
Match ExpressionStatement(10406) to ExpressionStatement(10409)
Match SimpleName: iCodeTop(2983) to SimpleName: iCodeTop(2983)
Match VariableDeclarationFragment(21) to VariableDeclarationFragment(21)
Match ParenthesizedExpression(4304) to ParenthesizedExpression(4304)
Match SimpleName: DBL_MRK(6667) to SimpleName: DBL_MRK(6680)
Match InfixExpression: >=(931) to InfixExpression: >=(931)
Match VariableDeclarationFragment(6652) to VariableDeclarationFragment(6665)
Match NumberLiteral: 0(10564) to NumberLiteral: 0(10567)
Match Block(9029) to Block(9042)
Match Block(1092) to Block(1092)
Match SimpleName: doubleWrap(10134) to SimpleName: doubleWrap(10147)
Match SimpleName: stackTop(9024) to SimpleName: stackTop(9037)
Match ExpressionStatement(7036) to ExpressionStatement(7049)
Match ArrayAccess(9229) to ArrayAccess(9242)
Match SimpleType: Node(1374) to SimpleType: Node(1374)
Match SimpleName: Object(8842) to SimpleName: Object(8855)
Match QualifiedName: TokenStream.LAST_TOKEN(23) to QualifiedName: TokenStream.LAST_TOKEN(23)
Match QualifiedName: TokenStream.IFEQ(1388) to QualifiedName: TokenStream.IFEQ(1388)
Match SimpleName: valBln(6978) to SimpleName: valBln(6991)
Match SimpleName: cx(157) to SimpleName: cx(157)
Match SimpleName: calleeScope(8792) to SimpleName: calleeScope(8805)
Match InstanceofExpression(11069) to InstanceofExpression(11072)
Match NumberLiteral: 8(4302) to NumberLiteral: 8(4302)
Match SimpleName: getCheckThis(485) to SimpleName: getCheckThis(485)
Match PrimitiveType: int(1511) to PrimitiveType: int(1511)
Match ParenthesizedExpression(10846) to ParenthesizedExpression(10849)
Match ConditionalExpression(11061) to ConditionalExpression(11064)
Match SimpleName: iCodeTop(2054) to SimpleName: iCodeTop(2054)
Match QualifiedName: Boolean.FALSE(6445) to QualifiedName: Boolean.FALSE(6458)
Match SimpleName: itsStackDepth(2799) to SimpleName: itsStackDepth(2799)
Match SingleVariableDeclaration(10878) to SingleVariableDeclaration(10881)
Match SimpleName: iCodeTop(1773) to SimpleName: iCodeTop(1773)
Match SimpleName: lhs(8247) to SimpleName: lhs(8260)
Match SimpleName: ClassNameHelper(51) to SimpleName: ClassNameHelper(51)
Match PrimitiveType: int(1056) to PrimitiveType: int(1056)
Match Assignment: =(6223) to Assignment: =(6236)
Match SimpleName: defaultTarget(1412) to SimpleName: defaultTarget(1412)
Match PrefixExpression: ++(9279) to PrefixExpression: ++(9292)
Match ExpressionStatement(10144) to ExpressionStatement(10157)
Match SimpleName: iCodeTop(3479) to SimpleName: iCodeTop(3479)
Match VariableDeclarationFragment(6807) to VariableDeclarationFragment(6820)
Match InfixExpression: ==(10952) to InfixExpression: ==(10955)
Match InfixExpression: !=(8538) to InfixExpression: !=(8551)
Match VariableDeclarationFragment(9318) to VariableDeclarationFragment(9331)
Match SimpleName: ScriptRuntime(6099) to SimpleName: ScriptRuntime(6112)
Match SimpleName: itsSourceFile(211) to SimpleName: itsSourceFile(211)
Match MethodInvocation(3096) to MethodInvocation(3096)
Match VariableDeclarationFragment(853) to VariableDeclarationFragment(853)
Match ExpressionStatement(3530) to ExpressionStatement(3530)
Match PrimitiveType: int(1608) to PrimitiveType: int(1608)
Match IfStatement(10664) to IfStatement(10667)
Match SimpleType: Scriptable(278) to SimpleType: Scriptable(278)
Match InfixExpression: ==(9079) to InfixExpression: ==(9092)
Match SimpleName: pc(10605) to SimpleName: pc(10608)
Match SimpleName: addIndex(1707) to SimpleName: addIndex(1707)
Match SimpleName: old_pc(4852) to SimpleName: old_pc(4852)
Match SimpleType: Boolean(11385) to SimpleType: Boolean(11388)
Match SimpleName: first(1330) to SimpleName: first(1330)
Match IfStatement(1790) to IfStatement(1790)
Match Assignment: =(7712) to Assignment: =(7725)
Match SimpleName: String(4408) to SimpleName: String(4408)
Match SimpleName: toNumber(11373) to SimpleName: toNumber(11376)
Match VariableDeclarationFragment(1051) to VariableDeclarationFragment(1051)
Match Dimension(12119) to Dimension(12122)
Match QualifiedName: TokenStream.SETVAR(5517) to QualifiedName: TokenStream.SETVAR(5517)
Match Block(4557) to Block(4557)
Match ExpressionStatement(4149) to ExpressionStatement(4149)
Match ArrayAccess(8735) to ArrayAccess(8748)
Match Assignment: =(8457) to Assignment: =(8470)
Match MethodInvocation(11812) to MethodInvocation(11815)
Match InfixExpression: &&(6610) to InfixExpression: &&(6623)
Match SimpleName: debuggerFrame(10543) to SimpleName: debuggerFrame(10546)
Match SimpleName: iCodeTop(1178) to SimpleName: iCodeTop(1178)
Match SimpleName: Object(10865) to SimpleName: Object(10868)
Match InfixExpression: ==(6605) to InfixExpression: ==(6618)
Match SimpleName: iCodeTop(1921) to SimpleName: iCodeTop(1921)
Match BreakStatement(9764) to BreakStatement(9777)
Match ThrowStatement(9872) to ThrowStatement(9885)
Match SimpleName: sDbl(7796) to SimpleName: sDbl(7809)
Match ExpressionStatement(2303) to ExpressionStatement(2303)
Match SimpleName: pc(5098) to SimpleName: pc(5098)
Match SimpleName: pc(5172) to SimpleName: pc(5172)
Match MethodInvocation(5740) to MethodInvocation(5740)
Match VariableDeclarationFragment(6085) to VariableDeclarationFragment(6098)
Match SimpleName: index(1057) to SimpleName: index(1057)
Match SwitchCase(5179) to SwitchCase(5179)
Match Block(388) to Block(388)
Match QualifiedName: TokenStream.TYPEOFNAME(5257) to QualifiedName: TokenStream.TYPEOFNAME(5257)
Match SimpleName: lhs(9149) to SimpleName: lhs(9162)
Match MethodInvocation(8456) to MethodInvocation(8469)
Match InfixExpression: !=(6212) to InfixExpression: !=(6225)
Match InfixExpression: +(4162) to InfixExpression: +(4162)
Match ArrayAccess(9153) to ArrayAccess(9166)
Match SimpleName: Node(1410) to SimpleName: Node(1410)
Match VariableDeclarationStatement(6692) to VariableDeclarationStatement(6705)
Match SimpleName: Throwable(10386) to SimpleName: Throwable(10389)
Match SimpleName: child(1193) to SimpleName: child(1193)
Match BreakStatement(7580) to BreakStatement(7593)
Match SimpleName: sDbl(9567) to SimpleName: sDbl(9580)
Match InfixExpression: >>(7616) to InfixExpression: >>(7629)
Match MethodInvocation(1264) to MethodInvocation(1264)
Match MethodInvocation(5749) to MethodInvocation(5749)
Match ArrayAccess(10160) to ArrayAccess(10173)
Match SimpleName: stackDbl(11609) to SimpleName: stackDbl(11612)
Match SimpleName: itsLabels(706) to SimpleName: itsLabels(706)
Match SimpleName: Node(1823) to SimpleName: Node(1823)
Match PrefixExpression: -(2587) to PrefixExpression: -(2587)
Match NullLiteral(1143) to NullLiteral(1143)
Match SimpleName: addByte(1578) to SimpleName: addByte(1578)
Match ExpressionStatement(9696) to ExpressionStatement(9709)
Match PrimitiveType: int(6171) to PrimitiveType: int(6184)
Match SimpleName: stackTop(9923) to SimpleName: stackTop(9936)
Match Assignment: =(8550) to Assignment: =(8563)
Match SimpleName: slot(9544) to SimpleName: slot(9557)
Match ForStatement(6202) to ForStatement(6215)
Match SimpleName: cx(8860) to SimpleName: cx(8873)
Match PrimitiveType: int(1296) to PrimitiveType: int(1296)
Match ArrayAccess(8093) to ArrayAccess(8106)
Match QualifiedName: f.itsData(9011) to QualifiedName: f.itsData(9024)
Match SimpleName: stackTop(6762) to SimpleName: stackTop(6775)
Match PrimitiveType: int(8577) to PrimitiveType: int(8590)
Match SimpleName: child(2532) to SimpleName: child(2532)
Match Assignment: =(10609) to Assignment: =(10612)
Match BreakStatement(6888) to BreakStatement(6901)
Match SimpleName: val(11878) to SimpleName: val(11881)
Match SimpleName: itsStackDepth(2899) to SimpleName: itsStackDepth(2899)
Match QualifiedName: TokenStream.LSH(7543) to QualifiedName: TokenStream.LSH(7556)
Match NumberLiteral: 2(2461) to NumberLiteral: 2(2461)
Match SimpleName: savedDomain(12196) to SimpleName: savedDomain(12199)
Match InfixExpression: <=(4478) to InfixExpression: <=(4478)
Match SimpleName: FunctionNode(1044) to SimpleName: FunctionNode(1044)
Match ExpressionStatement(9075) to ExpressionStatement(9088)
Match SimpleName: iCodeTop(3730) to SimpleName: iCodeTop(3730)
Match IfStatement(11518) to IfStatement(11521)
Match SimpleName: name(8265) to SimpleName: name(8278)
Match MethodInvocation(1581) to MethodInvocation(1581)
Match Assignment: -=(1690) to Assignment: -=(1690)
Match SimpleName: y(11414) to SimpleName: y(11417)
Match SimpleName: stackTop(8260) to SimpleName: stackTop(8273)
Match ExpressionStatement(7370) to ExpressionStatement(7383)
Match SimpleName: setProto(10169) to SimpleName: setProto(10182)
Match SimpleName: cx(5729) to SimpleName: cx(5729)
Match ExpressionStatement(3562) to ExpressionStatement(3562)
Match QualifiedName: TokenStream.GOTO(2299) to QualifiedName: TokenStream.GOTO(2299)
Match VariableDeclarationFragment(5282) to VariableDeclarationFragment(5282)
Match Assignment: =(752) to Assignment: =(752)
Match SimpleName: cx(10681) to SimpleName: cx(10684)
Match SimpleName: tname(5311) to SimpleName: tname(5311)
Match VariableDeclarationFragment(6400) to VariableDeclarationFragment(6413)
Match SimpleName: iCodeTop(3985) to SimpleName: iCodeTop(3985)
Match Modifier: private(12016) to Modifier: private(12019)
Match ExpressionStatement(5129) to ExpressionStatement(5129)
Match ExpressionStatement(9035) to ExpressionStatement(9048)
Match SwitchCase(2165) to SwitchCase(2165)
Match VariableDeclarationFragment(7564) to VariableDeclarationFragment(7577)
Match SimpleName: child(2644) to SimpleName: child(2644)
Match SimpleName: fnOrScript(9685) to SimpleName: fnOrScript(9698)
Match SimpleName: iCodeTop(4397) to SimpleName: iCodeTop(4397)
Match QualifiedName: TokenStream.DEFAULT(1167) to QualifiedName: TokenStream.DEFAULT(1167)
Match SimpleName: stack(8291) to SimpleName: stack(8304)
Match InfixExpression: !=(5766) to InfixExpression: !=(5779)
Match MethodInvocation(4873) to MethodInvocation(4873)
Match ExpressionStatement(6643) to ExpressionStatement(6656)
Match SimpleName: NativeFunction(5847) to SimpleName: NativeFunction(5860)
Match Block(3563) to Block(3563)
Match SimpleName: argShift(6003) to SimpleName: argShift(6016)
Match SimpleType: Object(6759) to SimpleType: Object(6772)
Match QualifiedName: array.length(4128) to QualifiedName: array.length(4128)
Match VariableDeclarationStatement(10886) to VariableDeclarationStatement(10889)
Match Block(8495) to Block(8508)
Match SimpleName: lhs(11019) to SimpleName: lhs(11022)
Match QualifiedName: Boolean.TRUE(6909) to QualifiedName: Boolean.TRUE(6922)
Match QualifiedName: TokenStream.INC(2693) to QualifiedName: TokenStream.INC(2693)
Match SimpleName: target(3828) to SimpleName: target(3828)
Match SimpleName: Object(8404) to SimpleName: Object(8417)
Match SimpleName: stackTop(7093) to SimpleName: stackTop(7106)
Match QualifiedName: itsData.itsStringTable(813) to QualifiedName: itsData.itsStringTable(813)
Match ExpressionStatement(1893) to ExpressionStatement(1893)
Match SimpleName: iCode(4836) to SimpleName: iCode(4836)
Match CastExpression(2925) to CastExpression(2925)
Match QualifiedName: Node.DEBUGSOURCE_PROP(296) to QualifiedName: Node.DEBUGSOURCE_PROP(296)
Match SimpleName: lhs(11141) to SimpleName: lhs(11144)
Match ExpressionStatement(3649) to ExpressionStatement(3649)
Match SimpleName: y(11376) to SimpleName: y(11379)
Match SimpleName: instructionThreshold(7030) to SimpleName: instructionThreshold(7043)
Match InfixExpression: ==(1523) to InfixExpression: ==(1523)
Match SimpleType: Context(5819) to SimpleType: Context(5832)
Match Block(3440) to Block(3440)
Match SimpleName: stackTop(8523) to SimpleName: stackTop(8536)
Match NumberLiteral: 0(7233) to NumberLiteral: 0(7246)
Match SimpleType: Node(3126) to SimpleType: Node(3126)
Match ExpressionStatement(7132) to ExpressionStatement(7145)
Match MethodInvocation(3336) to MethodInvocation(3336)
Match Assignment: =(2451) to Assignment: =(2451)
Match LabeledStatement(10754) to LabeledStatement(10757)
Match NumberLiteral: 0(7164) to NumberLiteral: 0(7177)
Match SimpleName: scope(9912) to SimpleName: scope(9925)
Match SimpleName: iCode(6277) to SimpleName: iCode(6290)
Match SimpleName: SOURCEFILE_ICODE(1579) to SimpleName: SOURCEFILE_ICODE(1579)
Match SimpleName: DebugFrame(6056) to SimpleName: DebugFrame(6069)
Match NumberLiteral: 1(7258) to NumberLiteral: 1(7271)
Match SimpleName: stackTop(8633) to SimpleName: stackTop(8646)
Match SimpleName: trueJumpStart(2274) to SimpleName: trueJumpStart(2274)
Match SimpleName: stackTop(7343) to SimpleName: stackTop(7356)
Match InfixExpression: ==(11279) to InfixExpression: ==(11282)
Match SimpleName: stackTop(8302) to SimpleName: stackTop(8315)
Match SimpleName: Function(9046) to SimpleName: Function(9059)
Match SimpleName: rDbl(7809) to SimpleName: rDbl(7822)
Match SimpleName: setElem(11887) to SimpleName: setElem(11890)
Match SimpleName: addByte(1268) to SimpleName: addByte(1268)
Match SwitchCase(7066) to SwitchCase(7079)
Match SimpleName: tname(4966) to SimpleName: tname(4966)
Match VariableDeclarationStatement(8988) to VariableDeclarationStatement(9001)
Match InfixExpression: !=(6983) to InfixExpression: !=(6996)
Match SimpleName: stackTop(11182) to SimpleName: stackTop(11185)
Match SimpleName: count(11950) to SimpleName: count(11953)
Match Block(522) to Block(522)
Match SimpleName: ScriptRuntime(10011) to SimpleName: ScriptRuntime(10024)
Match InfixExpression: +(11039) to InfixExpression: +(11042)
Match SimpleName: Context(4178) to SimpleName: Context(4178)
Match NumberLiteral: 2(5597) to NumberLiteral: 2(5597)
Match SimpleName: beyondJumpStart(2293) to SimpleName: beyondJumpStart(2293)
Match SimpleName: sDbl(7683) to SimpleName: sDbl(7696)
Match SimpleName: getPropChild(2826) to SimpleName: getPropChild(2826)
Match SimpleName: Throwable(10504) to SimpleName: Throwable(10507)
Match ExpressionStatement(2385) to ExpressionStatement(2385)
Match BreakStatement(9736) to BreakStatement(9749)
Match SimpleName: iCodeTop(2005) to SimpleName: iCodeTop(2005)
Match SimpleName: debuggerFrame(10347) to SimpleName: debuggerFrame(10350)
Match SimpleName: Object(5082) to SimpleName: Object(5082)
Match SimpleName: stackTop(6951) to SimpleName: stackTop(6964)
Match PrimitiveType: int(1584) to PrimitiveType: int(1584)
Match Assignment: =(4280) to Assignment: =(4280)
Match QualifiedName: TokenStream.NAMEDEC(2881) to QualifiedName: TokenStream.NAMEDEC(2881)
Match SimpleName: x(10887) to SimpleName: x(10890)
Match Assignment: +=(9333) to Assignment: +=(9346)
Match NumberLiteral: 3(4310) to NumberLiteral: 3(4310)
Match SimpleName: sDbl(8417) to SimpleName: sDbl(8430)
Match NullLiteral(762) to NullLiteral(762)
Match SwitchCase(5365) to SwitchCase(5365)
Match QualifiedName: TokenStream.ADD(2353) to QualifiedName: TokenStream.ADD(2353)
Match SimpleName: getNext(2442) to SimpleName: getNext(2442)
Match ExpressionStatement(10532) to ExpressionStatement(10535)
Match SimpleName: iCodeTop(1748) to SimpleName: iCodeTop(1748)
Match SimpleName: doubleValue(11565) to SimpleName: doubleValue(11568)
Match ExpressionStatement(11666) to ExpressionStatement(11669)
Match SimpleName: sDbl(7455) to SimpleName: sDbl(7468)
Match SimpleName: iCodeTop(2788) to SimpleName: iCodeTop(2788)
Match ExpressionStatement(3504) to ExpressionStatement(3504)
Match CastExpression(1802) to CastExpression(1802)
Match Assignment: =(719) to Assignment: =(719)
Match SimpleName: stackTop(11029) to SimpleName: stackTop(11032)
Match QualifiedName: Boolean.TRUE(6444) to QualifiedName: Boolean.TRUE(6457)
Match QualifiedName: TokenStream.GETSCOPEPARENT(2107) to QualifiedName: TokenStream.GETSCOPEPARENT(2107)
Match SimpleName: itsStackDepth(2737) to SimpleName: itsStackDepth(2737)
Match MethodInvocation(11305) to MethodInvocation(11308)
Match ExpressionStatement(3060) to ExpressionStatement(3060)
Match VariableDeclarationFragment(6476) to VariableDeclarationFragment(6489)
Match InfixExpression: ||(8779) to InfixExpression: ||(8792)
Match PrefixExpression: !(1567) to PrefixExpression: !(1567)
Match BreakStatement(2352) to BreakStatement(2352)
Match SimpleName: lDbl(6415) to SimpleName: lDbl(6428)
Match PrimitiveType: int(6036) to PrimitiveType: int(6049)
Match SimpleName: iCodeTop(1185) to SimpleName: iCodeTop(1185)
Match SimpleName: addByte(2974) to SimpleName: addByte(2974)
Match PrimitiveType: void(271) to PrimitiveType: void(271)
Match SimpleName: pc(5066) to SimpleName: pc(5066)
Match PrefixExpression: ++(8510) to PrefixExpression: ++(8523)
Match NumberLiteral: 5(34) to NumberLiteral: 5(34)
Match SimpleName: finallyTarget(3127) to SimpleName: finallyTarget(3127)
Match SimpleName: iCodeTop(1962) to SimpleName: iCodeTop(1962)
Match ExpressionStatement(7107) to ExpressionStatement(7120)
Match SimpleName: type(2877) to SimpleName: type(2877)
Match ArrayAccess(7529) to ArrayAccess(7542)
Match SimpleType: String(4409) to SimpleType: String(4409)
Match SimpleType: Object(11435) to SimpleType: Object(11438)
Match SimpleName: close(4691) to SimpleName: close(4691)
Match NumberLiteral: 1(4058) to NumberLiteral: 1(4058)
Match SimpleName: String(7950) to SimpleName: String(7963)
Match SimpleName: iCodeTop(1661) to SimpleName: iCodeTop(1661)
Match SimpleName: stackTop(7673) to SimpleName: stackTop(7686)
Match InfixExpression: ==(10132) to InfixExpression: ==(10145)
Match SimpleName: name(3478) to SimpleName: name(3478)
Match QualifiedName: TokenStream.DIV(5430) to QualifiedName: TokenStream.DIV(5430)
Match BreakStatement(7676) to BreakStatement(7689)
Match SimpleName: stackTop(8418) to SimpleName: stackTop(8431)
Match PrimitiveType: int(4466) to PrimitiveType: int(4466)