summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/misc/oktavia/src/stemmer/english-stemmer.jsx
blob: 901c12c858b486b4d0602643bd0e9f77bbaa7d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
// This file was generated automatically by the Snowball to JSX compiler

import "base-stemmer.jsx";
import "among.jsx";

 /**
  * This class was automatically generated by a Snowball to JSX compiler
  * It implements the stemming algorithm defined by a snowball script.
  */

class EnglishStemmer extends BaseStemmer
{
    static const serialVersionUID = 1;
    static const methodObject = new EnglishStemmer();

    static const a_0 = [
        new Among("arsen", -1, -1),
        new Among("commun", -1, -1),
        new Among("gener", -1, -1)
    ];

    static const a_1 = [
        new Among("'", -1, 1),
        new Among("'s'", 0, 1),
        new Among("'s", -1, 1)
    ];

    static const a_2 = [
        new Among("ied", -1, 2),
        new Among("s", -1, 3),
        new Among("ies", 1, 2),
        new Among("sses", 1, 1),
        new Among("ss", 1, -1),
        new Among("us", 1, -1)
    ];

    static const a_3 = [
        new Among("", -1, 3),
        new Among("bb", 0, 2),
        new Among("dd", 0, 2),
        new Among("ff", 0, 2),
        new Among("gg", 0, 2),
        new Among("bl", 0, 1),
        new Among("mm", 0, 2),
        new Among("nn", 0, 2),
        new Among("pp", 0, 2),
        new Among("rr", 0, 2),
        new Among("at", 0, 1),
        new Among("tt", 0, 2),
        new Among("iz", 0, 1)
    ];

    static const a_4 = [
        new Among("ed", -1, 2),
        new Among("eed", 0, 1),
        new Among("ing", -1, 2),
        new Among("edly", -1, 2),
        new Among("eedly", 3, 1),
        new Among("ingly", -1, 2)
    ];

    static const a_5 = [
        new Among("anci", -1, 3),
        new Among("enci", -1, 2),
        new Among("ogi", -1, 13),
        new Among("li", -1, 16),
        new Among("bli", 3, 12),
        new Among("abli", 4, 4),
        new Among("alli", 3, 8),
        new Among("fulli", 3, 14),
        new Among("lessli", 3, 15),
        new Among("ousli", 3, 10),
        new Among("entli", 3, 5),
        new Among("aliti", -1, 8),
        new Among("biliti", -1, 12),
        new Among("iviti", -1, 11),
        new Among("tional", -1, 1),
        new Among("ational", 14, 7),
        new Among("alism", -1, 8),
        new Among("ation", -1, 7),
        new Among("ization", 17, 6),
        new Among("izer", -1, 6),
        new Among("ator", -1, 7),
        new Among("iveness", -1, 11),
        new Among("fulness", -1, 9),
        new Among("ousness", -1, 10)
    ];

    static const a_6 = [
        new Among("icate", -1, 4),
        new Among("ative", -1, 6),
        new Among("alize", -1, 3),
        new Among("iciti", -1, 4),
        new Among("ical", -1, 4),
        new Among("tional", -1, 1),
        new Among("ational", 5, 2),
        new Among("ful", -1, 5),
        new Among("ness", -1, 5)
    ];

    static const a_7 = [
        new Among("ic", -1, 1),
        new Among("ance", -1, 1),
        new Among("ence", -1, 1),
        new Among("able", -1, 1),
        new Among("ible", -1, 1),
        new Among("ate", -1, 1),
        new Among("ive", -1, 1),
        new Among("ize", -1, 1),
        new Among("iti", -1, 1),
        new Among("al", -1, 1),
        new Among("ism", -1, 1),
        new Among("ion", -1, 2),
        new Among("er", -1, 1),
        new Among("ous", -1, 1),
        new Among("ant", -1, 1),
        new Among("ent", -1, 1),
        new Among("ment", 15, 1),
        new Among("ement", 16, 1)
    ];

    static const a_8 = [
        new Among("e", -1, 1),
        new Among("l", -1, 2)
    ];

    static const a_9 = [
        new Among("succeed", -1, -1),
        new Among("proceed", -1, -1),
        new Among("exceed", -1, -1),
        new Among("canning", -1, -1),
        new Among("inning", -1, -1),
        new Among("earring", -1, -1),
        new Among("herring", -1, -1),
        new Among("outing", -1, -1)
    ];

    static const a_10 = [
        new Among("andes", -1, -1),
        new Among("atlas", -1, -1),
        new Among("bias", -1, -1),
        new Among("cosmos", -1, -1),
        new Among("dying", -1, 3),
        new Among("early", -1, 9),
        new Among("gently", -1, 7),
        new Among("howe", -1, -1),
        new Among("idly", -1, 6),
        new Among("lying", -1, 4),
        new Among("news", -1, -1),
        new Among("only", -1, 10),
        new Among("singly", -1, 11),
        new Among("skies", -1, 2),
        new Among("skis", -1, 1),
        new Among("sky", -1, -1),
        new Among("tying", -1, 5),
        new Among("ugly", -1, 8)
    ];

    static const g_v = [17, 65, 16, 1] : int[];

    static const g_v_WXY = [1, 17, 65, 208, 1] : int[];

    static const g_valid_LI = [55, 141, 2] : int[];

    var B_Y_found : boolean = false;
    var I_p2 : int = 0;
    var I_p1 : int = 0;

    function copy_from (other : EnglishStemmer) : void
    {
        this.B_Y_found = other.B_Y_found;
        this.I_p2 = other.I_p2;
        this.I_p1 = other.I_p1;
        super.copy_from(other);
    }

    function r_prelude () : boolean
    {
        var v_1 : int;
        var v_2 : int;
        var v_3 : int;
        var v_4 : int;
        var v_5 : int;
        // (, line 25
        // unset Y_found, line 26
        this.B_Y_found = false;
        // do, line 27
        v_1 = this.cursor;
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            // (, line 27
            // [, line 27
            this.bra = this.cursor;
            // literal, line 27
            if (!(this.eq_s(1, "'")))
            {
                break lab0;
            }
            // ], line 27
            this.ket = this.cursor;
            // delete, line 27
            if (!this.slice_del())
            {
                return false;
            }
        }
        this.cursor = v_1;
        // do, line 28
        v_2 = this.cursor;
        var lab1 = true;
        lab1: while (lab1 == true)
        {
            lab1 = false;
            // (, line 28
            // [, line 28
            this.bra = this.cursor;
            // literal, line 28
            if (!(this.eq_s(1, "y")))
            {
                break lab1;
            }
            // ], line 28
            this.ket = this.cursor;
            // <-, line 28
            if (!this.slice_from("Y"))
            {
                return false;
            }
            // set Y_found, line 28
            this.B_Y_found = true;
        }
        this.cursor = v_2;
        // do, line 29
        v_3 = this.cursor;
        var lab2 = true;
        lab2: while (lab2 == true)
        {
            lab2 = false;
            // repeat, line 29
            replab3: while(true)
            {
                v_4 = this.cursor;
                var lab4 = true;
                lab4: while (lab4 == true)
                {
                    lab4 = false;
                    // (, line 29
                    // goto, line 29
                    golab5: while(true)
                    {
                        v_5 = this.cursor;
                        var lab6 = true;
                        lab6: while (lab6 == true)
                        {
                            lab6 = false;
                            // (, line 29
                            if (!(this.in_grouping(EnglishStemmer.g_v, 97, 121)))
                            {
                                break lab6;
                            }
                            // [, line 29
                            this.bra = this.cursor;
                            // literal, line 29
                            if (!(this.eq_s(1, "y")))
                            {
                                break lab6;
                            }
                            // ], line 29
                            this.ket = this.cursor;
                            this.cursor = v_5;
                            break golab5;
                        }
                        this.cursor = v_5;
                        if (this.cursor >= this.limit)
                        {
                            break lab4;
                        }
                        this.cursor++;
                    }
                    // <-, line 29
                    if (!this.slice_from("Y"))
                    {
                        return false;
                    }
                    // set Y_found, line 29
                    this.B_Y_found = true;
                    continue replab3;
                }
                this.cursor = v_4;
                break replab3;
            }
        }
        this.cursor = v_3;
        return true;
    }

    function r_mark_regions () : boolean
    {
        var v_1 : int;
        var v_2 : int;
        // (, line 32
        this.I_p1 = this.limit;
        this.I_p2 = this.limit;
        // do, line 35
        v_1 = this.cursor;
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            // (, line 35
            // or, line 41
            var lab1 = true;
            lab1: while (lab1 == true)
            {
                lab1 = false;
                v_2 = this.cursor;
                var lab2 = true;
                lab2: while (lab2 == true)
                {
                    lab2 = false;
                    // among, line 36
                    if (this.find_among(EnglishStemmer.a_0, 3) == 0)
                    {
                        break lab2;
                    }
                    break lab1;
                }
                this.cursor = v_2;
                // (, line 41
                // gopast, line 41
                golab3: while(true)
                {
                    var lab4 = true;
                    lab4: while (lab4 == true)
                    {
                        lab4 = false;
                        if (!(this.in_grouping(EnglishStemmer.g_v, 97, 121)))
                        {
                            break lab4;
                        }
                        break golab3;
                    }
                    if (this.cursor >= this.limit)
                    {
                        break lab0;
                    }
                    this.cursor++;
                }
                // gopast, line 41
                golab5: while(true)
                {
                    var lab6 = true;
                    lab6: while (lab6 == true)
                    {
                        lab6 = false;
                        if (!(this.out_grouping(EnglishStemmer.g_v, 97, 121)))
                        {
                            break lab6;
                        }
                        break golab5;
                    }
                    if (this.cursor >= this.limit)
                    {
                        break lab0;
                    }
                    this.cursor++;
                }
            }
            // setmark p1, line 42
            this.I_p1 = this.cursor;
            // gopast, line 43
            golab7: while(true)
            {
                var lab8 = true;
                lab8: while (lab8 == true)
                {
                    lab8 = false;
                    if (!(this.in_grouping(EnglishStemmer.g_v, 97, 121)))
                    {
                        break lab8;
                    }
                    break golab7;
                }
                if (this.cursor >= this.limit)
                {
                    break lab0;
                }
                this.cursor++;
            }
            // gopast, line 43
            golab9: while(true)
            {
                var lab10 = true;
                lab10: while (lab10 == true)
                {
                    lab10 = false;
                    if (!(this.out_grouping(EnglishStemmer.g_v, 97, 121)))
                    {
                        break lab10;
                    }
                    break golab9;
                }
                if (this.cursor >= this.limit)
                {
                    break lab0;
                }
                this.cursor++;
            }
            // setmark p2, line 43
            this.I_p2 = this.cursor;
        }
        this.cursor = v_1;
        return true;
    }

    function r_shortv () : boolean
    {
        var v_1 : int;
        // (, line 49
        // or, line 51
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            v_1 = this.limit - this.cursor;
            var lab1 = true;
            lab1: while (lab1 == true)
            {
                lab1 = false;
                // (, line 50
                if (!(this.out_grouping_b(EnglishStemmer.g_v_WXY, 89, 121)))
                {
                    break lab1;
                }
                if (!(this.in_grouping_b(EnglishStemmer.g_v, 97, 121)))
                {
                    break lab1;
                }
                if (!(this.out_grouping_b(EnglishStemmer.g_v, 97, 121)))
                {
                    break lab1;
                }
                break lab0;
            }
            this.cursor = this.limit - v_1;
            // (, line 52
            if (!(this.out_grouping_b(EnglishStemmer.g_v, 97, 121)))
            {
                return false;
            }
            if (!(this.in_grouping_b(EnglishStemmer.g_v, 97, 121)))
            {
                return false;
            }
            // atlimit, line 52
            if (this.cursor > this.limit_backward)
            {
                return false;
            }
        }
        return true;
    }

    function r_R1 () : boolean
    {
        if (!(this.I_p1 <= this.cursor))
        {
            return false;
        }
        return true;
    }

    function r_R2 () : boolean
    {
        if (!(this.I_p2 <= this.cursor))
        {
            return false;
        }
        return true;
    }

    function r_Step_1a () : boolean
    {
        var among_var : int;
        var v_1 : int;
        var v_2 : int;
        // (, line 58
        // try, line 59
        v_1 = this.limit - this.cursor;
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            // (, line 59
            // [, line 60
            this.ket = this.cursor;
            // substring, line 60
            among_var = this.find_among_b(EnglishStemmer.a_1, 3);
            if (among_var == 0)
            {
                this.cursor = this.limit - v_1;
                break lab0;
            }
            // ], line 60
            this.bra = this.cursor;
            switch (among_var) {
                case 0:
                    this.cursor = this.limit - v_1;
                    break lab0;
                case 1:
                    // (, line 62
                    // delete, line 62
                    if (!this.slice_del())
                    {
                        return false;
                    }
                    break;
            }
        }
        // [, line 65
        this.ket = this.cursor;
        // substring, line 65
        among_var = this.find_among_b(EnglishStemmer.a_2, 6);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 65
        this.bra = this.cursor;
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 66
                // <-, line 66
                if (!this.slice_from("ss"))
                {
                    return false;
                }
                break;
            case 2:
                // (, line 68
                // or, line 68
                var lab1 = true;
                lab1: while (lab1 == true)
                {
                    lab1 = false;
                    v_2 = this.limit - this.cursor;
                    var lab2 = true;
                    lab2: while (lab2 == true)
                    {
                        lab2 = false;
                        // (, line 68
                        // hop, line 68
                        {
                            var c : int = this.cursor - 2;
                            if (this.limit_backward > c || c > this.limit)
                            {
                                break lab2;
                            }
                            this.cursor = c;
                        }
                        // <-, line 68
                        if (!this.slice_from("i"))
                        {
                            return false;
                        }
                        break lab1;
                    }
                    this.cursor = this.limit - v_2;
                    // <-, line 68
                    if (!this.slice_from("ie"))
                    {
                        return false;
                    }
                }
                break;
            case 3:
                // (, line 69
                // next, line 69
                if (this.cursor <= this.limit_backward)
                {
                    return false;
                }
                this.cursor--;
                // gopast, line 69
                golab3: while(true)
                {
                    var lab4 = true;
                    lab4: while (lab4 == true)
                    {
                        lab4 = false;
                        if (!(this.in_grouping_b(EnglishStemmer.g_v, 97, 121)))
                        {
                            break lab4;
                        }
                        break golab3;
                    }
                    if (this.cursor <= this.limit_backward)
                    {
                        return false;
                    }
                    this.cursor--;
                }
                // delete, line 69
                if (!this.slice_del())
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_Step_1b () : boolean
    {
        var among_var : int;
        var v_1 : int;
        var v_3 : int;
        var v_4 : int;
        // (, line 74
        // [, line 75
        this.ket = this.cursor;
        // substring, line 75
        among_var = this.find_among_b(EnglishStemmer.a_4, 6);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 75
        this.bra = this.cursor;
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 77
                // call R1, line 77
                if (!this.r_R1())
                {
                    return false;
                }
                // <-, line 77
                if (!this.slice_from("ee"))
                {
                    return false;
                }
                break;
            case 2:
                // (, line 79
                // test, line 80
                v_1 = this.limit - this.cursor;
                // gopast, line 80
                golab0: while(true)
                {
                    var lab1 = true;
                    lab1: while (lab1 == true)
                    {
                        lab1 = false;
                        if (!(this.in_grouping_b(EnglishStemmer.g_v, 97, 121)))
                        {
                            break lab1;
                        }
                        break golab0;
                    }
                    if (this.cursor <= this.limit_backward)
                    {
                        return false;
                    }
                    this.cursor--;
                }
                this.cursor = this.limit - v_1;
                // delete, line 80
                if (!this.slice_del())
                {
                    return false;
                }
                // test, line 81
                v_3 = this.limit - this.cursor;
                // substring, line 81
                among_var = this.find_among_b(EnglishStemmer.a_3, 13);
                if (among_var == 0)
                {
                    return false;
                }
                this.cursor = this.limit - v_3;
                switch (among_var) {
                    case 0:
                        return false;
                    case 1:
                        // (, line 83
                        // <+, line 83
                        {
                            var c : int = this.cursor;
                            this.insert(this.cursor, this.cursor, "e");
                            this.cursor = c;
                        }
                        break;
                    case 2:
                        // (, line 86
                        // [, line 86
                        this.ket = this.cursor;
                        // next, line 86
                        if (this.cursor <= this.limit_backward)
                        {
                            return false;
                        }
                        this.cursor--;
                        // ], line 86
                        this.bra = this.cursor;
                        // delete, line 86
                        if (!this.slice_del())
                        {
                            return false;
                        }
                        break;
                    case 3:
                        // (, line 87
                        // atmark, line 87
                        if (this.cursor != this.I_p1)
                        {
                            return false;
                        }
                        // test, line 87
                        v_4 = this.limit - this.cursor;
                        // call shortv, line 87
                        if (!this.r_shortv())
                        {
                            return false;
                        }
                        this.cursor = this.limit - v_4;
                        // <+, line 87
                        {
                            var c : int = this.cursor;
                            this.insert(this.cursor, this.cursor, "e");
                            this.cursor = c;
                        }
                        break;
                }
                break;
        }
        return true;
    }

    function r_Step_1c () : boolean
    {
        var v_1 : int;
        var v_2 : int;
        // (, line 93
        // [, line 94
        this.ket = this.cursor;
        // or, line 94
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            v_1 = this.limit - this.cursor;
            var lab1 = true;
            lab1: while (lab1 == true)
            {
                lab1 = false;
                // literal, line 94
                if (!(this.eq_s_b(1, "y")))
                {
                    break lab1;
                }
                break lab0;
            }
            this.cursor = this.limit - v_1;
            // literal, line 94
            if (!(this.eq_s_b(1, "Y")))
            {
                return false;
            }
        }
        // ], line 94
        this.bra = this.cursor;
        if (!(this.out_grouping_b(EnglishStemmer.g_v, 97, 121)))
        {
            return false;
        }
        // not, line 95
        {
            v_2 = this.limit - this.cursor;
            var lab2 = true;
            lab2: while (lab2 == true)
            {
                lab2 = false;
                // atlimit, line 95
                if (this.cursor > this.limit_backward)
                {
                    break lab2;
                }
                return false;
            }
            this.cursor = this.limit - v_2;
        }
        // <-, line 96
        if (!this.slice_from("i"))
        {
            return false;
        }
        return true;
    }

    function r_Step_2 () : boolean
    {
        var among_var : int;
        // (, line 99
        // [, line 100
        this.ket = this.cursor;
        // substring, line 100
        among_var = this.find_among_b(EnglishStemmer.a_5, 24);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 100
        this.bra = this.cursor;
        // call R1, line 100
        if (!this.r_R1())
        {
            return false;
        }
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 101
                // <-, line 101
                if (!this.slice_from("tion"))
                {
                    return false;
                }
                break;
            case 2:
                // (, line 102
                // <-, line 102
                if (!this.slice_from("ence"))
                {
                    return false;
                }
                break;
            case 3:
                // (, line 103
                // <-, line 103
                if (!this.slice_from("ance"))
                {
                    return false;
                }
                break;
            case 4:
                // (, line 104
                // <-, line 104
                if (!this.slice_from("able"))
                {
                    return false;
                }
                break;
            case 5:
                // (, line 105
                // <-, line 105
                if (!this.slice_from("ent"))
                {
                    return false;
                }
                break;
            case 6:
                // (, line 107
                // <-, line 107
                if (!this.slice_from("ize"))
                {
                    return false;
                }
                break;
            case 7:
                // (, line 109
                // <-, line 109
                if (!this.slice_from("ate"))
                {
                    return false;
                }
                break;
            case 8:
                // (, line 111
                // <-, line 111
                if (!this.slice_from("al"))
                {
                    return false;
                }
                break;
            case 9:
                // (, line 112
                // <-, line 112
                if (!this.slice_from("ful"))
                {
                    return false;
                }
                break;
            case 10:
                // (, line 114
                // <-, line 114
                if (!this.slice_from("ous"))
                {
                    return false;
                }
                break;
            case 11:
                // (, line 116
                // <-, line 116
                if (!this.slice_from("ive"))
                {
                    return false;
                }
                break;
            case 12:
                // (, line 118
                // <-, line 118
                if (!this.slice_from("ble"))
                {
                    return false;
                }
                break;
            case 13:
                // (, line 119
                // literal, line 119
                if (!(this.eq_s_b(1, "l")))
                {
                    return false;
                }
                // <-, line 119
                if (!this.slice_from("og"))
                {
                    return false;
                }
                break;
            case 14:
                // (, line 120
                // <-, line 120
                if (!this.slice_from("ful"))
                {
                    return false;
                }
                break;
            case 15:
                // (, line 121
                // <-, line 121
                if (!this.slice_from("less"))
                {
                    return false;
                }
                break;
            case 16:
                // (, line 122
                if (!(this.in_grouping_b(EnglishStemmer.g_valid_LI, 99, 116)))
                {
                    return false;
                }
                // delete, line 122
                if (!this.slice_del())
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_Step_3 () : boolean
    {
        var among_var : int;
        // (, line 126
        // [, line 127
        this.ket = this.cursor;
        // substring, line 127
        among_var = this.find_among_b(EnglishStemmer.a_6, 9);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 127
        this.bra = this.cursor;
        // call R1, line 127
        if (!this.r_R1())
        {
            return false;
        }
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 128
                // <-, line 128
                if (!this.slice_from("tion"))
                {
                    return false;
                }
                break;
            case 2:
                // (, line 129
                // <-, line 129
                if (!this.slice_from("ate"))
                {
                    return false;
                }
                break;
            case 3:
                // (, line 130
                // <-, line 130
                if (!this.slice_from("al"))
                {
                    return false;
                }
                break;
            case 4:
                // (, line 132
                // <-, line 132
                if (!this.slice_from("ic"))
                {
                    return false;
                }
                break;
            case 5:
                // (, line 134
                // delete, line 134
                if (!this.slice_del())
                {
                    return false;
                }
                break;
            case 6:
                // (, line 136
                // call R2, line 136
                if (!this.r_R2())
                {
                    return false;
                }
                // delete, line 136
                if (!this.slice_del())
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_Step_4 () : boolean
    {
        var among_var : int;
        var v_1 : int;
        // (, line 140
        // [, line 141
        this.ket = this.cursor;
        // substring, line 141
        among_var = this.find_among_b(EnglishStemmer.a_7, 18);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 141
        this.bra = this.cursor;
        // call R2, line 141
        if (!this.r_R2())
        {
            return false;
        }
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 144
                // delete, line 144
                if (!this.slice_del())
                {
                    return false;
                }
                break;
            case 2:
                // (, line 145
                // or, line 145
                var lab0 = true;
                lab0: while (lab0 == true)
                {
                    lab0 = false;
                    v_1 = this.limit - this.cursor;
                    var lab1 = true;
                    lab1: while (lab1 == true)
                    {
                        lab1 = false;
                        // literal, line 145
                        if (!(this.eq_s_b(1, "s")))
                        {
                            break lab1;
                        }
                        break lab0;
                    }
                    this.cursor = this.limit - v_1;
                    // literal, line 145
                    if (!(this.eq_s_b(1, "t")))
                    {
                        return false;
                    }
                }
                // delete, line 145
                if (!this.slice_del())
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_Step_5 () : boolean
    {
        var among_var : int;
        var v_1 : int;
        var v_2 : int;
        // (, line 149
        // [, line 150
        this.ket = this.cursor;
        // substring, line 150
        among_var = this.find_among_b(EnglishStemmer.a_8, 2);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 150
        this.bra = this.cursor;
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 151
                // or, line 151
                var lab0 = true;
                lab0: while (lab0 == true)
                {
                    lab0 = false;
                    v_1 = this.limit - this.cursor;
                    var lab1 = true;
                    lab1: while (lab1 == true)
                    {
                        lab1 = false;
                        // call R2, line 151
                        if (!this.r_R2())
                        {
                            break lab1;
                        }
                        break lab0;
                    }
                    this.cursor = this.limit - v_1;
                    // (, line 151
                    // call R1, line 151
                    if (!this.r_R1())
                    {
                        return false;
                    }
                    // not, line 151
                    {
                        v_2 = this.limit - this.cursor;
                        var lab2 = true;
                        lab2: while (lab2 == true)
                        {
                            lab2 = false;
                            // call shortv, line 151
                            if (!this.r_shortv())
                            {
                                break lab2;
                            }
                            return false;
                        }
                        this.cursor = this.limit - v_2;
                    }
                }
                // delete, line 151
                if (!this.slice_del())
                {
                    return false;
                }
                break;
            case 2:
                // (, line 152
                // call R2, line 152
                if (!this.r_R2())
                {
                    return false;
                }
                // literal, line 152
                if (!(this.eq_s_b(1, "l")))
                {
                    return false;
                }
                // delete, line 152
                if (!this.slice_del())
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_exception2 () : boolean
    {
        // (, line 156
        // [, line 158
        this.ket = this.cursor;
        // substring, line 158
        if (this.find_among_b(EnglishStemmer.a_9, 8) == 0)
        {
            return false;
        }
        // ], line 158
        this.bra = this.cursor;
        // atlimit, line 158
        if (this.cursor > this.limit_backward)
        {
            return false;
        }
        return true;
    }

    function r_exception1 () : boolean
    {
        var among_var : int;
        // (, line 168
        // [, line 170
        this.bra = this.cursor;
        // substring, line 170
        among_var = this.find_among(EnglishStemmer.a_10, 18);
        if (among_var == 0)
        {
            return false;
        }
        // ], line 170
        this.ket = this.cursor;
        // atlimit, line 170
        if (this.cursor < this.limit)
        {
            return false;
        }
        switch (among_var) {
            case 0:
                return false;
            case 1:
                // (, line 174
                // <-, line 174
                if (!this.slice_from("ski"))
                {
                    return false;
                }
                break;
            case 2:
                // (, line 175
                // <-, line 175
                if (!this.slice_from("sky"))
                {
                    return false;
                }
                break;
            case 3:
                // (, line 176
                // <-, line 176
                if (!this.slice_from("die"))
                {
                    return false;
                }
                break;
            case 4:
                // (, line 177
                // <-, line 177
                if (!this.slice_from("lie"))
                {
                    return false;
                }
                break;
            case 5:
                // (, line 178
                // <-, line 178
                if (!this.slice_from("tie"))
                {
                    return false;
                }
                break;
            case 6:
                // (, line 182
                // <-, line 182
                if (!this.slice_from("idl"))
                {
                    return false;
                }
                break;
            case 7:
                // (, line 183
                // <-, line 183
                if (!this.slice_from("gentl"))
                {
                    return false;
                }
                break;
            case 8:
                // (, line 184
                // <-, line 184
                if (!this.slice_from("ugli"))
                {
                    return false;
                }
                break;
            case 9:
                // (, line 185
                // <-, line 185
                if (!this.slice_from("earli"))
                {
                    return false;
                }
                break;
            case 10:
                // (, line 186
                // <-, line 186
                if (!this.slice_from("onli"))
                {
                    return false;
                }
                break;
            case 11:
                // (, line 187
                // <-, line 187
                if (!this.slice_from("singl"))
                {
                    return false;
                }
                break;
        }
        return true;
    }

    function r_postlude () : boolean
    {
        var v_1 : int;
        var v_2 : int;
        // (, line 203
        // Boolean test Y_found, line 203
        if (!(this.B_Y_found))
        {
            return false;
        }
        // repeat, line 203
        replab0: while(true)
        {
            v_1 = this.cursor;
            var lab1 = true;
            lab1: while (lab1 == true)
            {
                lab1 = false;
                // (, line 203
                // goto, line 203
                golab2: while(true)
                {
                    v_2 = this.cursor;
                    var lab3 = true;
                    lab3: while (lab3 == true)
                    {
                        lab3 = false;
                        // (, line 203
                        // [, line 203
                        this.bra = this.cursor;
                        // literal, line 203
                        if (!(this.eq_s(1, "Y")))
                        {
                            break lab3;
                        }
                        // ], line 203
                        this.ket = this.cursor;
                        this.cursor = v_2;
                        break golab2;
                    }
                    this.cursor = v_2;
                    if (this.cursor >= this.limit)
                    {
                        break lab1;
                    }
                    this.cursor++;
                }
                // <-, line 203
                if (!this.slice_from("y"))
                {
                    return false;
                }
                continue replab0;
            }
            this.cursor = v_1;
            break replab0;
        }
        return true;
    }

    override function stem () : boolean
    {
        var v_1 : int;
        var v_2 : int;
        var v_3 : int;
        var v_4 : int;
        var v_5 : int;
        var v_6 : int;
        var v_7 : int;
        var v_8 : int;
        var v_9 : int;
        var v_10 : int;
        var v_11 : int;
        var v_12 : int;
        var v_13 : int;
        // (, line 205
        // or, line 207
        var lab0 = true;
        lab0: while (lab0 == true)
        {
            lab0 = false;
            v_1 = this.cursor;
            var lab1 = true;
            lab1: while (lab1 == true)
            {
                lab1 = false;
                // call exception1, line 207
                if (!this.r_exception1())
                {
                    break lab1;
                }
                break lab0;
            }
            this.cursor = v_1;
            var lab2 = true;
            lab2: while (lab2 == true)
            {
                lab2 = false;
                // not, line 208
                {
                    v_2 = this.cursor;
                    var lab3 = true;
                    lab3: while (lab3 == true)
                    {
                        lab3 = false;
                        // hop, line 208
                        {
                            var c : int = this.cursor + 3;
                            if (0 > c || c > this.limit)
                            {
                                break lab3;
                            }
                            this.cursor = c;
                        }
                        break lab2;
                    }
                    this.cursor = v_2;
                }
                break lab0;
            }
            this.cursor = v_1;
            // (, line 208
            // do, line 209
            v_3 = this.cursor;
            var lab4 = true;
            lab4: while (lab4 == true)
            {
                lab4 = false;
                // call prelude, line 209
                if (!this.r_prelude())
                {
                    break lab4;
                }
            }
            this.cursor = v_3;
            // do, line 210
            v_4 = this.cursor;
            var lab5 = true;
            lab5: while (lab5 == true)
            {
                lab5 = false;
                // call mark_regions, line 210
                if (!this.r_mark_regions())
                {
                    break lab5;
                }
            }
            this.cursor = v_4;
            // backwards, line 211
            this.limit_backward = this.cursor; this.cursor = this.limit;
            // (, line 211
            // do, line 213
            v_5 = this.limit - this.cursor;
            var lab6 = true;
            lab6: while (lab6 == true)
            {
                lab6 = false;
                // call Step_1a, line 213
                if (!this.r_Step_1a())
                {
                    break lab6;
                }
            }
            this.cursor = this.limit - v_5;
            // or, line 215
            var lab7 = true;
            lab7: while (lab7 == true)
            {
                lab7 = false;
                v_6 = this.limit - this.cursor;
                var lab8 = true;
                lab8: while (lab8 == true)
                {
                    lab8 = false;
                    // call exception2, line 215
                    if (!this.r_exception2())
                    {
                        break lab8;
                    }
                    break lab7;
                }
                this.cursor = this.limit - v_6;
                // (, line 215
                // do, line 217
                v_7 = this.limit - this.cursor;
                var lab9 = true;
                lab9: while (lab9 == true)
                {
                    lab9 = false;
                    // call Step_1b, line 217
                    if (!this.r_Step_1b())
                    {
                        break lab9;
                    }
                }
                this.cursor = this.limit - v_7;
                // do, line 218
                v_8 = this.limit - this.cursor;
                var lab10 = true;
                lab10: while (lab10 == true)
                {
                    lab10 = false;
                    // call Step_1c, line 218
                    if (!this.r_Step_1c())
                    {
                        break lab10;
                    }
                }
                this.cursor = this.limit - v_8;
                // do, line 220
                v_9 = this.limit - this.cursor;
                var lab11 = true;
                lab11: while (lab11 == true)
                {
                    lab11 = false;
                    // call Step_2, line 220
                    if (!this.r_Step_2())
                    {
                        break lab11;
                    }
                }
                this.cursor = this.limit - v_9;
                // do, line 221
                v_10 = this.limit - this.cursor;
                var lab12 = true;
                lab12: while (lab12 == true)
                {
                    lab12 = false;
                    // call Step_3, line 221
                    if (!this.r_Step_3())
                    {
                        break lab12;
                    }
                }
                this.cursor = this.limit - v_10;
                // do, line 222
                v_11 = this.limit - this.cursor;
                var lab13 = true;
                lab13: while (lab13 == true)
                {
                    lab13 = false;
                    // call Step_4, line 222
                    if (!this.r_Step_4())
                    {
                        break lab13;
                    }
                }
                this.cursor = this.limit - v_11;
                // do, line 224
                v_12 = this.limit - this.cursor;
                var lab14 = true;
                lab14: while (lab14 == true)
                {
                    lab14 = false;
                    // call Step_5, line 224
                    if (!this.r_Step_5())
                    {
                        break lab14;
                    }
                }
                this.cursor = this.limit - v_12;
            }
            this.cursor = this.limit_backward;            // do, line 227
            v_13 = this.cursor;
            var lab15 = true;
            lab15: while (lab15 == true)
            {
                lab15 = false;
                // call postlude, line 227
                if (!this.r_postlude())
                {
                    break lab15;
                }
            }
            this.cursor = v_13;
        }
        return true;
    }

    function equals (o : variant) : boolean {
        return o instanceof EnglishStemmer;
    }

    function hashCode() : int
    {
        //http://stackoverflow.com/questions/194846/is-there-any-kind-of-hashcode-function-in-javascript
        var classname = "EnglishStemmer";
        var hash = 0;
        if (classname.length == 0) return hash;
        for (var i = 0; i < classname.length; i++) {
            var char = classname.charCodeAt(i);
            hash = ((hash << 5) - hash) + char;
            hash = hash & hash; // Convert to 32bit integer
        }
        return hash;
    }

}