Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0fd5487cf9e9937d8c29f085240172ff08a638ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
/*
 * generated by Xtext
 */
package org.eclipse.papyrus.uml.alf.serializer;

import com.google.inject.Inject;
import java.util.Set;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.papyrus.uml.alf.AcceptBlock;
import org.eclipse.papyrus.uml.alf.AcceptStatement;
import org.eclipse.papyrus.uml.alf.ActiveClassDefinition;
import org.eclipse.papyrus.uml.alf.ActivityDefinition;
import org.eclipse.papyrus.uml.alf.AlfPackage;
import org.eclipse.papyrus.uml.alf.AnnotatedStatement;
import org.eclipse.papyrus.uml.alf.ArithmeticExpression;
import org.eclipse.papyrus.uml.alf.AssignmentExpression;
import org.eclipse.papyrus.uml.alf.AssociationDefinition;
import org.eclipse.papyrus.uml.alf.BehaviorInvocationExpression;
import org.eclipse.papyrus.uml.alf.BitStringUnaryExpression;
import org.eclipse.papyrus.uml.alf.Block;
import org.eclipse.papyrus.uml.alf.BlockStatement;
import org.eclipse.papyrus.uml.alf.BooleanLiteralExpression;
import org.eclipse.papyrus.uml.alf.BooleanUnaryExpression;
import org.eclipse.papyrus.uml.alf.BreakStatement;
import org.eclipse.papyrus.uml.alf.CastExpression;
import org.eclipse.papyrus.uml.alf.ClassDefinition;
import org.eclipse.papyrus.uml.alf.ClassExtentExpression;
import org.eclipse.papyrus.uml.alf.ClassificationExpression;
import org.eclipse.papyrus.uml.alf.ClassifierDefinition;
import org.eclipse.papyrus.uml.alf.ClassifierTemplateParameter;
import org.eclipse.papyrus.uml.alf.ClassifyStatement;
import org.eclipse.papyrus.uml.alf.ConcurrentClauses;
import org.eclipse.papyrus.uml.alf.ConditionalLogicalExpression;
import org.eclipse.papyrus.uml.alf.ConditionalTestExpression;
import org.eclipse.papyrus.uml.alf.DataTypeDefinition;
import org.eclipse.papyrus.uml.alf.DoStatement;
import org.eclipse.papyrus.uml.alf.ElementImportReference;
import org.eclipse.papyrus.uml.alf.EmptyStatement;
import org.eclipse.papyrus.uml.alf.EnumerationDefinition;
import org.eclipse.papyrus.uml.alf.EnumerationLiteralName;
import org.eclipse.papyrus.uml.alf.EqualityExpression;
import org.eclipse.papyrus.uml.alf.ExpressionStatement;
import org.eclipse.papyrus.uml.alf.ExtentOrExpression;
import org.eclipse.papyrus.uml.alf.FeatureInvocationExpression;
import org.eclipse.papyrus.uml.alf.FeatureLeftHandSide;
import org.eclipse.papyrus.uml.alf.FeatureReference;
import org.eclipse.papyrus.uml.alf.ForStatement;
import org.eclipse.papyrus.uml.alf.IfStatement;
import org.eclipse.papyrus.uml.alf.InLineStatement;
import org.eclipse.papyrus.uml.alf.IncrementOrDecrementExpression;
import org.eclipse.papyrus.uml.alf.InstanceCreationExpression;
import org.eclipse.papyrus.uml.alf.IsolationExpression;
import org.eclipse.papyrus.uml.alf.LinkOperationExpression;
import org.eclipse.papyrus.uml.alf.LocalNameDeclarationStatement;
import org.eclipse.papyrus.uml.alf.LogicalExpression;
import org.eclipse.papyrus.uml.alf.LoopVariableDefinition;
import org.eclipse.papyrus.uml.alf.Member;
import org.eclipse.papyrus.uml.alf.NameBinding;
import org.eclipse.papyrus.uml.alf.NameExpression;
import org.eclipse.papyrus.uml.alf.NameLeftHandSide;
import org.eclipse.papyrus.uml.alf.NamedExpression;
import org.eclipse.papyrus.uml.alf.NamedTemplateBinding;
import org.eclipse.papyrus.uml.alf.NamedTuple;
import org.eclipse.papyrus.uml.alf.NaturalLiteralExpression;
import org.eclipse.papyrus.uml.alf.NonFinalClause;
import org.eclipse.papyrus.uml.alf.NonReturnParameter;
import org.eclipse.papyrus.uml.alf.NumericUnaryExpression;
import org.eclipse.papyrus.uml.alf.OperationDefinition;
import org.eclipse.papyrus.uml.alf.PackageDefinition;
import org.eclipse.papyrus.uml.alf.PackageImportReference;
import org.eclipse.papyrus.uml.alf.PositionalTemplateBinding;
import org.eclipse.papyrus.uml.alf.PositionalTuple;
import org.eclipse.papyrus.uml.alf.PropertyAccessExpression;
import org.eclipse.papyrus.uml.alf.PropertyDefinition;
import org.eclipse.papyrus.uml.alf.QualifiedName;
import org.eclipse.papyrus.uml.alf.QualifiedNameList;
import org.eclipse.papyrus.uml.alf.ReceptionDefinition;
import org.eclipse.papyrus.uml.alf.RelationalExpression;
import org.eclipse.papyrus.uml.alf.ReturnParameter;
import org.eclipse.papyrus.uml.alf.ReturnStatement;
import org.eclipse.papyrus.uml.alf.SequenceAccessExpression;
import org.eclipse.papyrus.uml.alf.SequenceConstructionExpression;
import org.eclipse.papyrus.uml.alf.SequenceExpansionExpression;
import org.eclipse.papyrus.uml.alf.SequenceExpressionList;
import org.eclipse.papyrus.uml.alf.SequenceOperationExpression;
import org.eclipse.papyrus.uml.alf.SequenceRange;
import org.eclipse.papyrus.uml.alf.SequenceReductionExpression;
import org.eclipse.papyrus.uml.alf.ShiftExpression;
import org.eclipse.papyrus.uml.alf.SignalDefinition;
import org.eclipse.papyrus.uml.alf.SignalReceptionDefinition;
import org.eclipse.papyrus.uml.alf.StereotypeAnnotation;
import org.eclipse.papyrus.uml.alf.StringLiteralExpression;
import org.eclipse.papyrus.uml.alf.SuperInvocationExpression;
import org.eclipse.papyrus.uml.alf.SwitchClause;
import org.eclipse.papyrus.uml.alf.SwitchStatement;
import org.eclipse.papyrus.uml.alf.TaggedValue;
import org.eclipse.papyrus.uml.alf.TaggedValueList;
import org.eclipse.papyrus.uml.alf.TemplateParameterSubstitution;
import org.eclipse.papyrus.uml.alf.ThisExpression;
import org.eclipse.papyrus.uml.alf.TypedElementDefinition;
import org.eclipse.papyrus.uml.alf.UnboundedLiteralExpression;
import org.eclipse.papyrus.uml.alf.UnitDefinition;
import org.eclipse.papyrus.uml.alf.WhileStatement;
import org.eclipse.papyrus.uml.alf.services.AlfGrammarAccess;
import org.eclipse.xtext.Action;
import org.eclipse.xtext.Parameter;
import org.eclipse.xtext.ParserRule;
import org.eclipse.xtext.serializer.ISerializationContext;
import org.eclipse.xtext.serializer.acceptor.SequenceFeeder;
import org.eclipse.xtext.serializer.sequencer.AbstractDelegatingSemanticSequencer;
import org.eclipse.xtext.serializer.sequencer.ITransientValueService.ValueTransient;

@SuppressWarnings("all")
public class AlfSemanticSequencer extends AbstractDelegatingSemanticSequencer {

	@Inject
	private AlfGrammarAccess grammarAccess;
	
	@Override
	public void sequence(ISerializationContext context, EObject semanticObject) {
		EPackage epackage = semanticObject.eClass().getEPackage();
		ParserRule rule = context.getParserRule();
		Action action = context.getAssignedAction();
		Set<Parameter> parameters = context.getEnabledBooleanParameters();
		if (epackage == AlfPackage.eINSTANCE)
			switch (semanticObject.eClass().getClassifierID()) {
			case AlfPackage.ACCEPT_BLOCK:
				if (rule == grammarAccess.getAcceptBlockRule()) {
					sequence_AcceptBlock_AcceptClause(context, (AcceptBlock) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getAcceptClauseRule()) {
					sequence_AcceptClause(context, (AcceptBlock) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.ACCEPT_STATEMENT:
				sequence_AcceptStatement(context, (AcceptStatement) semanticObject); 
				return; 
			case AlfPackage.ACTIVE_CLASS_DEFINITION:
				if (rule == grammarAccess.getActiveClassDeclarationRule()) {
					sequence_ActiveClassDeclaration(context, (ActiveClassDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassDefinitionOrStubRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()) {
					sequence_ActiveClassDeclaration_ActiveClassDefinitionOrStub(context, (ActiveClassDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getActiveClassDefinitionRule()) {
					sequence_ActiveClassDeclaration_ActiveClassDefinition(context, (ActiveClassDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.ACTIVITY_DEFINITION:
				if (rule == grammarAccess.getActivityDeclarationRule()) {
					sequence_ActivityDeclaration(context, (ActivityDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getActivityDefinitionOrStubRule()) {
					sequence_ActivityDeclaration_ActivityDefinitionOrStub(context, (ActivityDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getActivityDefinitionRule()) {
					sequence_ActivityDeclaration_ActivityDefinition(context, (ActivityDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getBehaviorClauseRule()) {
					sequence_BehaviorClause(context, (ActivityDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.ANNOTATED_STATEMENT:
				sequence_AnnotatedStatement(context, (AnnotatedStatement) semanticObject); 
				return; 
			case AlfPackage.ARITHMETIC_EXPRESSION:
				sequence_AdditiveExpression_MultiplicativeExpression(context, (ArithmeticExpression) semanticObject); 
				return; 
			case AlfPackage.ASSIGNMENT_EXPRESSION:
				sequence_AssignmentExpression(context, (AssignmentExpression) semanticObject); 
				return; 
			case AlfPackage.ASSOCIATION_DEFINITION:
				if (rule == grammarAccess.getAssociationDeclarationRule()) {
					sequence_AssociationDeclaration(context, (AssociationDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getAssociationDefinitionOrStubRule()) {
					sequence_AssociationDeclaration_AssociationDefinitionOrStub(context, (AssociationDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getAssociationDefinitionRule()) {
					sequence_AssociationDeclaration_AssociationDefinition(context, (AssociationDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.BEHAVIOR_INVOCATION_EXPRESSION:
				sequence_BehaviorInvocationExpression(context, (BehaviorInvocationExpression) semanticObject); 
				return; 
			case AlfPackage.BIT_STRING_UNARY_EXPRESSION:
				sequence_BitStringUnaryExpression(context, (BitStringUnaryExpression) semanticObject); 
				return; 
			case AlfPackage.BLOCK:
				if (rule == grammarAccess.getBlockRule()) {
					sequence_Block(context, (Block) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSwitchDefaultClauseRule()
						|| rule == grammarAccess.getNonEmptyStatementSequenceRule()) {
					sequence_NonEmptyStatementSequence(context, (Block) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getStatementSequenceRule()) {
					sequence_StatementSequence(context, (Block) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.BLOCK_STATEMENT:
				sequence_BlockStatement(context, (BlockStatement) semanticObject); 
				return; 
			case AlfPackage.BOOLEAN_LITERAL_EXPRESSION:
				sequence_BooleanLiteralExpression(context, (BooleanLiteralExpression) semanticObject); 
				return; 
			case AlfPackage.BOOLEAN_UNARY_EXPRESSION:
				sequence_BooleanUnaryExpression(context, (BooleanUnaryExpression) semanticObject); 
				return; 
			case AlfPackage.BREAK_STATEMENT:
				sequence_BreakStatement(context, (BreakStatement) semanticObject); 
				return; 
			case AlfPackage.CAST_EXPRESSION:
				sequence_CastExpression(context, (CastExpression) semanticObject); 
				return; 
			case AlfPackage.CLASS_DEFINITION:
				if (rule == grammarAccess.getClassDeclarationRule()) {
					sequence_ClassDeclaration(context, (ClassDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()) {
					sequence_ClassDeclaration_ClassDefinitionOrStub(context, (ClassDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getClassDefinitionRule()) {
					sequence_ClassDeclaration_ClassDefinition(context, (ClassDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.CLASS_EXTENT_EXPRESSION:
				sequence_ClassExtentExpression(context, (ClassExtentExpression) semanticObject); 
				return; 
			case AlfPackage.CLASSIFICATION_EXPRESSION:
				sequence_ClassificationExpression(context, (ClassificationExpression) semanticObject); 
				return; 
			case AlfPackage.CLASSIFIER_DEFINITION:
				sequence_ClassifierSignature(context, (ClassifierDefinition) semanticObject); 
				return; 
			case AlfPackage.CLASSIFIER_TEMPLATE_PARAMETER:
				sequence_ClassifierTemplateParameterDefinition(context, (ClassifierTemplateParameter) semanticObject); 
				return; 
			case AlfPackage.CLASSIFY_STATEMENT:
				sequence_ClassifyStatement(context, (ClassifyStatement) semanticObject); 
				return; 
			case AlfPackage.CONCURRENT_CLAUSES:
				sequence_ConcurrentClauses(context, (ConcurrentClauses) semanticObject); 
				return; 
			case AlfPackage.CONDITIONAL_LOGICAL_EXPRESSION:
				sequence_ConditionalAndExpression_ConditionalOrExpression(context, (ConditionalLogicalExpression) semanticObject); 
				return; 
			case AlfPackage.CONDITIONAL_TEST_EXPRESSION:
				sequence_ConditionalExpression(context, (ConditionalTestExpression) semanticObject); 
				return; 
			case AlfPackage.DATA_TYPE_DEFINITION:
				if (rule == grammarAccess.getDataTypeDeclarationRule()) {
					sequence_DataTypeDeclaration(context, (DataTypeDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getDataTypeDefinitionOrStubRule()) {
					sequence_DataTypeDeclaration_DataTypeDefinitionOrStub(context, (DataTypeDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getDataTypeDefinitionRule()) {
					sequence_DataTypeDeclaration_DataTypeDefinition(context, (DataTypeDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.DO_STATEMENT:
				sequence_DoStatement(context, (DoStatement) semanticObject); 
				return; 
			case AlfPackage.ELEMENT_IMPORT_REFERENCE:
				sequence_ElementImportReference(context, (ElementImportReference) semanticObject); 
				return; 
			case AlfPackage.EMPTY_STATEMENT:
				sequence_EmptyStatement(context, (EmptyStatement) semanticObject); 
				return; 
			case AlfPackage.ENUMERATION_DEFINITION:
				if (rule == grammarAccess.getEnumerationDeclarationRule()) {
					sequence_EnumerationDeclaration(context, (EnumerationDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getEnumerationDefinitionOrStubRule()) {
					sequence_EnumerationDeclaration_EnumerationDefinitionOrStub(context, (EnumerationDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getEnumerationDefinitionRule()) {
					sequence_EnumerationDeclaration_EnumerationDefinition(context, (EnumerationDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.ENUMERATION_LITERAL_NAME:
				sequence_EnumerationLiteralNameDefinition(context, (EnumerationLiteralName) semanticObject); 
				return; 
			case AlfPackage.EQUALITY_EXPRESSION:
				sequence_EqualityExpression(context, (EqualityExpression) semanticObject); 
				return; 
			case AlfPackage.EXPRESSION_STATEMENT:
				sequence_ExpressionStatement(context, (ExpressionStatement) semanticObject); 
				return; 
			case AlfPackage.EXTENT_OR_EXPRESSION:
				if (action == grammarAccess.getPrimaryExpressionAccess().getSequenceOperationExpressionPrimaryAction_1_2_2_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceReductionExpressionPrimaryAction_1_2_2_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceExpansionExpressionPrimaryAction_1_2_2_2_0()) {
					sequence_PrimaryExpression_SequenceExpansionExpression_1_2_2_2_0_SequenceOperationExpression_1_2_2_0_0_SequenceReductionExpression_1_2_2_1_0(context, (ExtentOrExpression) semanticObject); 
					return; 
				}
				else if (action == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getSequenceOperationExpressionPrimaryAction_3_0_0()
						|| action == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getSequenceReductionExpressionPrimaryAction_3_1_0()
						|| action == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getSequenceExpansionExpressionPrimaryAction_3_2_0()) {
					sequence_SequenceOperationOrReductionOrExpansionExpression_SequenceExpansionExpression_3_2_0_SequenceOperationExpression_3_0_0_SequenceReductionExpression_3_1_0(context, (ExtentOrExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.FEATURE_INVOCATION_EXPRESSION:
				if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInitializationExpressionRule()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_PrimaryExpression_ThisExpression(context, (FeatureInvocationExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getThisExpressionRule()) {
					sequence_ThisExpression(context, (FeatureInvocationExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.FEATURE_LEFT_HAND_SIDE:
				sequence_FeatureLeftHandSide(context, (FeatureLeftHandSide) semanticObject); 
				return; 
			case AlfPackage.FEATURE_REFERENCE:
				if (action == grammarAccess.getPrimaryExpressionAccess().getFeatureInvocationExpressionTargetAction_1_0_3()) {
					sequence_PrimaryExpression_FeatureInvocationExpression_1_0_3(context, (FeatureReference) semanticObject); 
					return; 
				}
				else if (action == grammarAccess.getPrimaryExpressionAccess().getPropertyAccessExpressionFeatureReferenceAction_1_1_3()) {
					sequence_PrimaryExpression_PropertyAccessExpression_1_1_3(context, (FeatureReference) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.FOR_STATEMENT:
				sequence_ForStatement(context, (ForStatement) semanticObject); 
				return; 
			case AlfPackage.IF_STATEMENT:
				sequence_IfStatement(context, (IfStatement) semanticObject); 
				return; 
			case AlfPackage.IN_LINE_STATEMENT:
				sequence_InLineStatement(context, (InLineStatement) semanticObject); 
				return; 
			case AlfPackage.INCREMENT_OR_DECREMENT_EXPRESSION:
				if (rule == grammarAccess.getPostfixExpressionRule()) {
					sequence_PostfixExpression(context, (IncrementOrDecrementExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInitializationExpressionRule()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_PostfixExpression_PrefixExpression(context, (IncrementOrDecrementExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPrefixExpressionRule()
						|| rule == grammarAccess.getNonPostfixNonCastUnaryExpressionRule()) {
					sequence_PrefixExpression(context, (IncrementOrDecrementExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.INSTANCE_CREATION_EXPRESSION:
				if (rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getInstanceCreationOrSequenceConstructionExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_InstanceCreationOrSequenceConstructionExpression(context, (InstanceCreationExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getInitializationExpressionRule()) {
					sequence_InstanceCreationOrSequenceConstructionExpression_InstanceInitializationExpression(context, (InstanceCreationExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getInstanceInitializationExpressionRule()) {
					sequence_InstanceInitializationExpression(context, (InstanceCreationExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.ISOLATION_EXPRESSION:
				sequence_IsolationExpression(context, (IsolationExpression) semanticObject); 
				return; 
			case AlfPackage.LINK_OPERATION_EXPRESSION:
				sequence_LinkOperationExpression(context, (LinkOperationExpression) semanticObject); 
				return; 
			case AlfPackage.LOCAL_NAME_DECLARATION_STATEMENT:
				sequence_LocalNameDeclarationStatement(context, (LocalNameDeclarationStatement) semanticObject); 
				return; 
			case AlfPackage.LOGICAL_EXPRESSION:
				sequence_AndExpression_ExclusiveOrExpression_InclusiveOrExpression(context, (LogicalExpression) semanticObject); 
				return; 
			case AlfPackage.LOOP_VARIABLE_DEFINITION:
				sequence_LoopVariableDefinition(context, (LoopVariableDefinition) semanticObject); 
				return; 
			case AlfPackage.MEMBER:
				if (rule == grammarAccess.getActiveClassMemberRule()) {
					sequence_ActiveClassMember(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getClassMemberRule()) {
					sequence_ClassMember(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getClassifierTemplateParameterRule()) {
					sequence_ClassifierTemplateParameter(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getEnumerationLiteralNameRule()) {
					sequence_EnumerationLiteralName(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getFormalParameterRule()) {
					sequence_FormalParameter(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementRule()) {
					sequence_PackagedElement(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getReturnParameterRule()) {
					sequence_ReturnParameter(context, (Member) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getStructuredMemberRule()) {
					sequence_StructuredMember(context, (Member) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.NAME_BINDING:
				sequence_NameBinding(context, (NameBinding) semanticObject); 
				return; 
			case AlfPackage.NAME_EXPRESSION:
				sequence_NameExpression(context, (NameExpression) semanticObject); 
				return; 
			case AlfPackage.NAME_LEFT_HAND_SIDE:
				sequence_NameLeftHandSide(context, (NameLeftHandSide) semanticObject); 
				return; 
			case AlfPackage.NAMED_EXPRESSION:
				if (rule == grammarAccess.getIndexedNamedExpressionRule()) {
					sequence_IndexedNamedExpression(context, (NamedExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamedExpressionRule()) {
					sequence_NamedExpression(context, (NamedExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.NAMED_TEMPLATE_BINDING:
				sequence_NamedTemplateBinding(context, (NamedTemplateBinding) semanticObject); 
				return; 
			case AlfPackage.NAMED_TUPLE:
				if (rule == grammarAccess.getLinkOperationTupleRule()
						|| rule == grammarAccess.getIndexedNamedTupleExpressionListRule()) {
					sequence_IndexedNamedTupleExpressionList(context, (NamedTuple) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getTupleRule()
						|| rule == grammarAccess.getNamedTupleExpressionListRule()) {
					sequence_NamedTupleExpressionList(context, (NamedTuple) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.NATURAL_LITERAL_EXPRESSION:
				sequence_NaturalLiteralExpression(context, (NaturalLiteralExpression) semanticObject); 
				return; 
			case AlfPackage.NON_FINAL_CLAUSE:
				sequence_NonFinalClause(context, (NonFinalClause) semanticObject); 
				return; 
			case AlfPackage.NON_RETURN_PARAMETER:
				sequence_FormalParameterDefinition(context, (NonReturnParameter) semanticObject); 
				return; 
			case AlfPackage.NUMERIC_UNARY_EXPRESSION:
				sequence_NumericUnaryExpression(context, (NumericUnaryExpression) semanticObject); 
				return; 
			case AlfPackage.OPERATION_DEFINITION:
				if (rule == grammarAccess.getOperationDeclarationRule()) {
					sequence_OperationDeclaration(context, (OperationDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getFeatureDefinitionOrStubRule()
						|| rule == grammarAccess.getOperationDefinitionOrStubRule()) {
					sequence_OperationDeclaration_OperationDefinitionOrStub(context, (OperationDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.PACKAGE_DEFINITION:
				if (rule == grammarAccess.getPackageDefinitionOrStubRule()
						|| rule == grammarAccess.getPackagedElementDefinitionRule()) {
					sequence_PackageDefinitionOrStub(context, (PackageDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getPackageDefinitionRule()) {
					sequence_PackageDefinition(context, (PackageDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.PACKAGE_IMPORT_REFERENCE:
				sequence_PackageImportReference(context, (PackageImportReference) semanticObject); 
				return; 
			case AlfPackage.POSITIONAL_TEMPLATE_BINDING:
				sequence_PositionalTemplateBinding(context, (PositionalTemplateBinding) semanticObject); 
				return; 
			case AlfPackage.POSITIONAL_TUPLE:
				sequence_PositionalTupleExpressionList(context, (PositionalTuple) semanticObject); 
				return; 
			case AlfPackage.PROPERTY_ACCESS_EXPRESSION:
				sequence_PrimaryExpression(context, (PropertyAccessExpression) semanticObject); 
				return; 
			case AlfPackage.PROPERTY_DEFINITION:
				if (rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getFeatureDefinitionOrStubRule()
						|| rule == grammarAccess.getAttributeDefinitionRule()) {
					sequence_AttributeDefinition_PropertyDeclaration(context, (PropertyDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPropertyDefinitionRule()
						|| rule == grammarAccess.getPropertyDeclarationRule()) {
					sequence_PropertyDeclaration(context, (PropertyDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.QUALIFIED_NAME:
				if (rule == grammarAccess.getColonQualifiedNameRule()) {
					sequence_ColonQualifiedName_UnqualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getDotQualifiedNameRule()) {
					sequence_DotQualifiedName_UnqualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackageImportQualifiedNameRule()) {
					sequence_PackageImportQualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPotentiallyAmbiguousQualifiedNameRule()) {
					sequence_PotentiallyAmbiguousQualifiedName_UnqualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDeclarationRule()
						|| rule == grammarAccess.getQualifiedNameRule()) {
					sequence_QualifiedName_UnqualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getUnqualifiedNameRule()) {
					sequence_UnqualifiedName(context, (QualifiedName) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.QUALIFIED_NAME_LIST:
				if (rule == grammarAccess.getSpecializationClauseRule()
						|| rule == grammarAccess.getRedefinitionClauseRule()
						|| rule == grammarAccess.getClassificationFromClauseRule()
						|| rule == grammarAccess.getClassificationToClauseRule()
						|| rule == grammarAccess.getQualifiedNameListRule()) {
					sequence_QualifiedNameList(context, (QualifiedNameList) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getTemplateParameterConstraintRule()) {
					sequence_TemplateParameterConstraint(context, (QualifiedNameList) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.RECEPTION_DEFINITION:
				sequence_ReceptionDefinition(context, (ReceptionDefinition) semanticObject); 
				return; 
			case AlfPackage.RELATIONAL_EXPRESSION:
				sequence_RelationalExpression(context, (RelationalExpression) semanticObject); 
				return; 
			case AlfPackage.RETURN_PARAMETER:
				sequence_ReturnParameterDefinition(context, (ReturnParameter) semanticObject); 
				return; 
			case AlfPackage.RETURN_STATEMENT:
				sequence_ReturnStatement(context, (ReturnStatement) semanticObject); 
				return; 
			case AlfPackage.SEQUENCE_ACCESS_EXPRESSION:
				sequence_PrimaryExpression(context, (SequenceAccessExpression) semanticObject); 
				return; 
			case AlfPackage.SEQUENCE_CONSTRUCTION_EXPRESSION:
				if (rule == grammarAccess.getInstanceCreationOrSequenceConstructionExpressionRule()) {
					sequence_InstanceCreationOrSequenceConstructionExpression(context, (SequenceConstructionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_InstanceCreationOrSequenceConstructionExpression_SequenceConstructionExpression(context, (SequenceConstructionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getInitializationExpressionRule()) {
					sequence_InstanceCreationOrSequenceConstructionExpression_SequenceConstructionExpression_SequenceInitializationExpression(context, (SequenceConstructionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSequenceConstructionExpressionRule()) {
					sequence_SequenceConstructionExpression(context, (SequenceConstructionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSequenceInitializationExpressionRule()) {
					sequence_SequenceInitializationExpression(context, (SequenceConstructionExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.SEQUENCE_EXPANSION_EXPRESSION:
				if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInitializationExpressionRule()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceExpansionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionRule()) {
					sequence_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceExpansionExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.SEQUENCE_EXPRESSION_LIST:
				sequence_SequenceExpressionList(context, (SequenceExpressionList) semanticObject); 
				return; 
			case AlfPackage.SEQUENCE_OPERATION_EXPRESSION:
				if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInitializationExpressionRule()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceOperationExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionRule()) {
					sequence_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceOperationExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.SEQUENCE_RANGE:
				sequence_SequenceRange(context, (SequenceRange) semanticObject); 
				return; 
			case AlfPackage.SEQUENCE_REDUCTION_EXPRESSION:
				if (rule == grammarAccess.getAttributeInitializerRule()
						|| rule == grammarAccess.getExpressionRule()
						|| rule == grammarAccess.getPrimaryExpressionRule()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0()
						|| action == grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0()
						|| rule == grammarAccess.getBaseExpressionRule()
						|| rule == grammarAccess.getParenthesizedExpressionRule()
						|| rule == grammarAccess.getSequenceElementRule()
						|| rule == grammarAccess.getIndexRule()
						|| rule == grammarAccess.getUnaryExpressionRule()
						|| rule == grammarAccess.getPostfixOrCastExpressionRule()
						|| rule == grammarAccess.getCastCompletionRule()
						|| rule == grammarAccess.getMultiplicativeExpressionRule()
						|| action == grammarAccess.getMultiplicativeExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAdditiveExpressionRule()
						|| action == grammarAccess.getAdditiveExpressionAccess().getArithmeticExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getShiftExpressionRule()
						|| action == grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getRelationalExpressionRule()
						|| action == grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getClassificationExpressionRule()
						|| action == grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0()
						|| rule == grammarAccess.getEqualityExpressionRule()
						|| action == grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getAndExpressionRule()
						|| action == grammarAccess.getAndExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getExclusiveOrExpressionRule()
						|| action == grammarAccess.getExclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInclusiveOrExpressionRule()
						|| action == grammarAccess.getInclusiveOrExpressionAccess().getLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalAndExpressionRule()
						|| action == grammarAccess.getConditionalAndExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalOrExpressionRule()
						|| action == grammarAccess.getConditionalOrExpressionAccess().getConditionalLogicalExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getConditionalExpressionRule()
						|| action == grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0()
						|| rule == grammarAccess.getInitializationExpressionRule()
						|| rule == grammarAccess.getSwitchCaseRule()) {
					sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceReductionExpression) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionRule()) {
					sequence_SequenceOperationOrReductionOrExpansionExpression(context, (SequenceReductionExpression) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.SHIFT_EXPRESSION:
				sequence_ShiftExpression(context, (ShiftExpression) semanticObject); 
				return; 
			case AlfPackage.SIGNAL_DEFINITION:
				if (rule == grammarAccess.getSignalDeclarationRule()) {
					sequence_SignalDeclaration(context, (SignalDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getPackagedElementDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionOrStubRule()
						|| rule == grammarAccess.getClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getSignalDefinitionOrStubRule()) {
					sequence_SignalDeclaration_SignalDefinitionOrStub(context, (SignalDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getNamespaceDefinitionRule()
						|| rule == grammarAccess.getClassifierDefinitionRule()
						|| rule == grammarAccess.getSignalDefinitionRule()) {
					sequence_SignalDeclaration_SignalDefinition(context, (SignalDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.SIGNAL_RECEPTION_DEFINITION:
				if (rule == grammarAccess.getSignalReceptionDeclarationRule()) {
					sequence_SignalReceptionDeclaration(context, (SignalReceptionDefinition) semanticObject); 
					return; 
				}
				else if (rule == grammarAccess.getActiveClassMemberDefinitionRule()
						|| rule == grammarAccess.getActiveFeatureDefinitionOrStubRule()
						|| rule == grammarAccess.getSignalReceptionDefinitionOrStubRule()) {
					sequence_SignalReceptionDeclaration_SignalReceptionDefinitionOrStub(context, (SignalReceptionDefinition) semanticObject); 
					return; 
				}
				else break;
			case AlfPackage.STEREOTYPE_ANNOTATION:
				sequence_StereotypeAnnotation(context, (StereotypeAnnotation) semanticObject); 
				return; 
			case AlfPackage.STRING_LITERAL_EXPRESSION:
				sequence_StringLiteralExpression(context, (StringLiteralExpression) semanticObject); 
				return; 
			case AlfPackage.SUPER_INVOCATION_EXPRESSION:
				sequence_SuperInvocationExpression(context, (SuperInvocationExpression) semanticObject); 
				return; 
			case AlfPackage.SWITCH_CLAUSE:
				sequence_SwitchClause(context, (SwitchClause) semanticObject); 
				return; 
			case AlfPackage.SWITCH_STATEMENT:
				sequence_SwitchStatement(context, (SwitchStatement) semanticObject); 
				return; 
			case AlfPackage.TAGGED_VALUE:
				sequence_TaggedValue(context, (TaggedValue) semanticObject); 
				return; 
			case AlfPackage.TAGGED_VALUE_LIST:
				sequence_TaggedValueList(context, (TaggedValueList) semanticObject); 
				return; 
			case AlfPackage.TEMPLATE_PARAMETER_SUBSTITUTION:
				sequence_TemplateParameterSubstitution(context, (TemplateParameterSubstitution) semanticObject); 
				return; 
			case AlfPackage.THIS_EXPRESSION:
				sequence_ThisExpression(context, (ThisExpression) semanticObject); 
				return; 
			case AlfPackage.TYPED_ELEMENT_DEFINITION:
				sequence_TypePart(context, (TypedElementDefinition) semanticObject); 
				return; 
			case AlfPackage.UNBOUNDED_LITERAL_EXPRESSION:
				sequence_UnboundedLiteralExpression(context, (UnboundedLiteralExpression) semanticObject); 
				return; 
			case AlfPackage.UNIT_DEFINITION:
				sequence_UnitDefinition(context, (UnitDefinition) semanticObject); 
				return; 
			case AlfPackage.WHILE_STATEMENT:
				sequence_WhileStatement(context, (WhileStatement) semanticObject); 
				return; 
			}
		if (errorAcceptor != null)
			errorAcceptor.accept(diagnosticProvider.createInvalidContextOrTypeDiagnostic(semanticObject, context));
	}
	
	/**
	 * Contexts:
	 *     AcceptBlock returns AcceptBlock
	 *
	 * Constraint:
	 *     (name=Name? signalNames=QualifiedNameList block=Block)
	 */
	protected void sequence_AcceptBlock_AcceptClause(ISerializationContext context, AcceptBlock semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AcceptClause returns AcceptBlock
	 *
	 * Constraint:
	 *     (name=Name? signalNames=QualifiedNameList)
	 */
	protected void sequence_AcceptClause(ISerializationContext context, AcceptBlock semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns AcceptStatement
	 *     AcceptStatement returns AcceptStatement
	 *
	 * Constraint:
	 *     (acceptBlock+=AcceptClause | (acceptBlock+=AcceptBlock acceptBlock+=AcceptBlock*))
	 */
	protected void sequence_AcceptStatement(ISerializationContext context, AcceptStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ActiveClassDeclaration returns ActiveClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause?
	 *     )
	 */
	protected void sequence_ActiveClassDeclaration(ISerializationContext context, ActiveClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns ActiveClassDefinition
	 *     ClassifierDefinitionOrStub returns ActiveClassDefinition
	 *     ClassMemberDefinition returns ActiveClassDefinition
	 *     ActiveClassDefinitionOrStub returns ActiveClassDefinition
	 *     ActiveClassMemberDefinition returns ActiveClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         (isStub?=';' | (ownedMember+=ActiveClassMember* classifierBehavior=BehaviorClause?))?
	 *     )
	 */
	protected void sequence_ActiveClassDeclaration_ActiveClassDefinitionOrStub(ISerializationContext context, ActiveClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns ActiveClassDefinition
	 *     ClassifierDefinition returns ActiveClassDefinition
	 *     ActiveClassDefinition returns ActiveClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         ownedMember+=ActiveClassMember* 
	 *         classifierBehavior=BehaviorClause?
	 *     )
	 */
	protected void sequence_ActiveClassDeclaration_ActiveClassDefinition(ISerializationContext context, ActiveClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ActiveClassMember returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? annotation+=StereotypeAnnotation* visibility=VisibilityIndicator? definition=ActiveClassMemberDefinition)
	 */
	protected void sequence_ActiveClassMember(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ActivityDeclaration returns ActivityDefinition
	 *
	 * Constraint:
	 *     (
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         (ownedMember+=FormalParameter ownedMember+=FormalParameter*)? 
	 *         ownedMember+=ReturnParameter?
	 *     )
	 */
	protected void sequence_ActivityDeclaration(ISerializationContext context, ActivityDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns ActivityDefinition
	 *     ClassifierDefinitionOrStub returns ActivityDefinition
	 *     ClassMemberDefinition returns ActivityDefinition
	 *     ActiveClassMemberDefinition returns ActivityDefinition
	 *     ActivityDefinitionOrStub returns ActivityDefinition
	 *
	 * Constraint:
	 *     (
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         (ownedMember+=FormalParameter ownedMember+=FormalParameter*)? 
	 *         ownedMember+=ReturnParameter? 
	 *         (isStub?=';' | body=Block)
	 *     )
	 */
	protected void sequence_ActivityDeclaration_ActivityDefinitionOrStub(ISerializationContext context, ActivityDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns ActivityDefinition
	 *     ClassifierDefinition returns ActivityDefinition
	 *     ActivityDefinition returns ActivityDefinition
	 *
	 * Constraint:
	 *     (
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         (ownedMember+=FormalParameter ownedMember+=FormalParameter*)? 
	 *         ownedMember+=ReturnParameter? 
	 *         body=Block
	 *     )
	 */
	protected void sequence_ActivityDeclaration_ActivityDefinition(ISerializationContext context, ActivityDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ArithmeticExpression
	 *     Expression returns ArithmeticExpression
	 *     PrimaryExpression returns ArithmeticExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ArithmeticExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ArithmeticExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ArithmeticExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ArithmeticExpression
	 *     BaseExpression returns ArithmeticExpression
	 *     ParenthesizedExpression returns ArithmeticExpression
	 *     SequenceElement returns ArithmeticExpression
	 *     Index returns ArithmeticExpression
	 *     UnaryExpression returns ArithmeticExpression
	 *     PostfixOrCastExpression returns ArithmeticExpression
	 *     CastCompletion returns ArithmeticExpression
	 *     MultiplicativeExpression returns ArithmeticExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ArithmeticExpression
	 *     AdditiveExpression returns ArithmeticExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ArithmeticExpression
	 *     ShiftExpression returns ArithmeticExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ArithmeticExpression
	 *     RelationalExpression returns ArithmeticExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ArithmeticExpression
	 *     ClassificationExpression returns ArithmeticExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ArithmeticExpression
	 *     EqualityExpression returns ArithmeticExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ArithmeticExpression
	 *     AndExpression returns ArithmeticExpression
	 *     AndExpression.LogicalExpression_1_0 returns ArithmeticExpression
	 *     ExclusiveOrExpression returns ArithmeticExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ArithmeticExpression
	 *     InclusiveOrExpression returns ArithmeticExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ArithmeticExpression
	 *     ConditionalAndExpression returns ArithmeticExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ArithmeticExpression
	 *     ConditionalOrExpression returns ArithmeticExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ArithmeticExpression
	 *     ConditionalExpression returns ArithmeticExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ArithmeticExpression
	 *     InitializationExpression returns ArithmeticExpression
	 *     SwitchCase returns ArithmeticExpression
	 *
	 * Constraint:
	 *     (
	 *         (operand1=MultiplicativeExpression_ArithmeticExpression_1_0 operator=MultiplicativeOperator operand2=UnaryExpression) | 
	 *         (operand1=AdditiveExpression_ArithmeticExpression_1_0 operator=AdditiveOperator operand2=MultiplicativeExpression)
	 *     )
	 */
	protected void sequence_AdditiveExpression_MultiplicativeExpression(ISerializationContext context, ArithmeticExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns LogicalExpression
	 *     Expression returns LogicalExpression
	 *     PrimaryExpression returns LogicalExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns LogicalExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns LogicalExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns LogicalExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns LogicalExpression
	 *     BaseExpression returns LogicalExpression
	 *     ParenthesizedExpression returns LogicalExpression
	 *     SequenceElement returns LogicalExpression
	 *     Index returns LogicalExpression
	 *     UnaryExpression returns LogicalExpression
	 *     PostfixOrCastExpression returns LogicalExpression
	 *     CastCompletion returns LogicalExpression
	 *     MultiplicativeExpression returns LogicalExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns LogicalExpression
	 *     AdditiveExpression returns LogicalExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns LogicalExpression
	 *     ShiftExpression returns LogicalExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns LogicalExpression
	 *     RelationalExpression returns LogicalExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns LogicalExpression
	 *     ClassificationExpression returns LogicalExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns LogicalExpression
	 *     EqualityExpression returns LogicalExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns LogicalExpression
	 *     AndExpression returns LogicalExpression
	 *     AndExpression.LogicalExpression_1_0 returns LogicalExpression
	 *     ExclusiveOrExpression returns LogicalExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns LogicalExpression
	 *     InclusiveOrExpression returns LogicalExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns LogicalExpression
	 *     ConditionalAndExpression returns LogicalExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns LogicalExpression
	 *     ConditionalOrExpression returns LogicalExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns LogicalExpression
	 *     ConditionalExpression returns LogicalExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns LogicalExpression
	 *     InitializationExpression returns LogicalExpression
	 *     SwitchCase returns LogicalExpression
	 *
	 * Constraint:
	 *     (
	 *         (operand1=AndExpression_LogicalExpression_1_0 operator='&' operand2=EqualityExpression) | 
	 *         (operand1=ExclusiveOrExpression_LogicalExpression_1_0 operator='^' operand2=AndExpression) | 
	 *         (operand1=InclusiveOrExpression_LogicalExpression_1_0 operator='|' operand2=ExclusiveOrExpression)
	 *     )
	 */
	protected void sequence_AndExpression_ExclusiveOrExpression_InclusiveOrExpression(ISerializationContext context, LogicalExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     DocumentedStatement returns AnnotatedStatement
	 *     AnnotatedStatement returns AnnotatedStatement
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? annotation+=STATEMENT_ANNOTATION* statement=Statement)
	 */
	protected void sequence_AnnotatedStatement(ISerializationContext context, AnnotatedStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns AssignmentExpression
	 *     Expression returns AssignmentExpression
	 *     PrimaryExpression returns AssignmentExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns AssignmentExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns AssignmentExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns AssignmentExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns AssignmentExpression
	 *     BaseExpression returns AssignmentExpression
	 *     ParenthesizedExpression returns AssignmentExpression
	 *     SequenceElement returns AssignmentExpression
	 *     Index returns AssignmentExpression
	 *     UnaryExpression returns AssignmentExpression
	 *     PostfixOrCastExpression returns AssignmentExpression
	 *     CastCompletion returns AssignmentExpression
	 *     MultiplicativeExpression returns AssignmentExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns AssignmentExpression
	 *     AdditiveExpression returns AssignmentExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns AssignmentExpression
	 *     ShiftExpression returns AssignmentExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns AssignmentExpression
	 *     RelationalExpression returns AssignmentExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns AssignmentExpression
	 *     ClassificationExpression returns AssignmentExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns AssignmentExpression
	 *     EqualityExpression returns AssignmentExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns AssignmentExpression
	 *     AndExpression returns AssignmentExpression
	 *     AndExpression.LogicalExpression_1_0 returns AssignmentExpression
	 *     ExclusiveOrExpression returns AssignmentExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns AssignmentExpression
	 *     InclusiveOrExpression returns AssignmentExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns AssignmentExpression
	 *     ConditionalAndExpression returns AssignmentExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns AssignmentExpression
	 *     ConditionalOrExpression returns AssignmentExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns AssignmentExpression
	 *     ConditionalExpression returns AssignmentExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns AssignmentExpression
	 *     AssignmentExpression returns AssignmentExpression
	 *     InitializationExpression returns AssignmentExpression
	 *     SwitchCase returns AssignmentExpression
	 *
	 * Constraint:
	 *     (leftHandSide=LeftHandSide operator=AssignmentOperator rightHandSide=Expression)
	 */
	protected void sequence_AssignmentExpression(ISerializationContext context, AssignmentExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_LeftHandSide()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_LeftHandSide()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_RightHandSide()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getAssignmentExpression_RightHandSide()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getAssignmentExpressionAccess().getLeftHandSideLeftHandSideParserRuleCall_0_0(), semanticObject.getLeftHandSide());
		feeder.accept(grammarAccess.getAssignmentExpressionAccess().getOperatorAssignmentOperatorParserRuleCall_1_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getAssignmentExpressionAccess().getRightHandSideExpressionParserRuleCall_2_0(), semanticObject.getRightHandSide());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AssociationDeclaration returns AssociationDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause?
	 *     )
	 */
	protected void sequence_AssociationDeclaration(ISerializationContext context, AssociationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns AssociationDefinition
	 *     ClassifierDefinitionOrStub returns AssociationDefinition
	 *     ClassMemberDefinition returns AssociationDefinition
	 *     ActiveClassMemberDefinition returns AssociationDefinition
	 *     AssociationDefinitionOrStub returns AssociationDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         (isStub?=';' | ownedMember+=StructuredMember+)?
	 *     )
	 */
	protected void sequence_AssociationDeclaration_AssociationDefinitionOrStub(ISerializationContext context, AssociationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns AssociationDefinition
	 *     ClassifierDefinition returns AssociationDefinition
	 *     AssociationDefinition returns AssociationDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         ownedMember+=StructuredMember*
	 *     )
	 */
	protected void sequence_AssociationDeclaration_AssociationDefinition(ISerializationContext context, AssociationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ClassMemberDefinition returns PropertyDefinition
	 *     ActiveClassMemberDefinition returns PropertyDefinition
	 *     FeatureDefinitionOrStub returns PropertyDefinition
	 *     AttributeDefinition returns PropertyDefinition
	 *
	 * Constraint:
	 *     (name=Name isComposite?='compose'? typePart=TypePart initializer=AttributeInitializer?)
	 */
	protected void sequence_AttributeDefinition_PropertyDeclaration(ISerializationContext context, PropertyDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     BehaviorClause returns ActivityDefinition
	 *
	 * Constraint:
	 *     (body=Block | name=Name)
	 */
	protected void sequence_BehaviorClause(ISerializationContext context, ActivityDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns BehaviorInvocationExpression
	 *     Expression returns BehaviorInvocationExpression
	 *     PrimaryExpression returns BehaviorInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns BehaviorInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns BehaviorInvocationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns BehaviorInvocationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns BehaviorInvocationExpression
	 *     BaseExpression returns BehaviorInvocationExpression
	 *     ParenthesizedExpression returns BehaviorInvocationExpression
	 *     BehaviorInvocationExpression returns BehaviorInvocationExpression
	 *     SequenceElement returns BehaviorInvocationExpression
	 *     Index returns BehaviorInvocationExpression
	 *     UnaryExpression returns BehaviorInvocationExpression
	 *     PostfixOrCastExpression returns BehaviorInvocationExpression
	 *     CastCompletion returns BehaviorInvocationExpression
	 *     MultiplicativeExpression returns BehaviorInvocationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns BehaviorInvocationExpression
	 *     AdditiveExpression returns BehaviorInvocationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns BehaviorInvocationExpression
	 *     ShiftExpression returns BehaviorInvocationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns BehaviorInvocationExpression
	 *     RelationalExpression returns BehaviorInvocationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns BehaviorInvocationExpression
	 *     ClassificationExpression returns BehaviorInvocationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns BehaviorInvocationExpression
	 *     EqualityExpression returns BehaviorInvocationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns BehaviorInvocationExpression
	 *     AndExpression returns BehaviorInvocationExpression
	 *     AndExpression.LogicalExpression_1_0 returns BehaviorInvocationExpression
	 *     ExclusiveOrExpression returns BehaviorInvocationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns BehaviorInvocationExpression
	 *     InclusiveOrExpression returns BehaviorInvocationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns BehaviorInvocationExpression
	 *     ConditionalAndExpression returns BehaviorInvocationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns BehaviorInvocationExpression
	 *     ConditionalOrExpression returns BehaviorInvocationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns BehaviorInvocationExpression
	 *     ConditionalExpression returns BehaviorInvocationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns BehaviorInvocationExpression
	 *     InitializationExpression returns BehaviorInvocationExpression
	 *     SwitchCase returns BehaviorInvocationExpression
	 *
	 * Constraint:
	 *     (target=PotentiallyAmbiguousQualifiedName tuple=Tuple)
	 */
	protected void sequence_BehaviorInvocationExpression(ISerializationContext context, BehaviorInvocationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBehaviorInvocationExpression_Target()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBehaviorInvocationExpression_Target()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getBehaviorInvocationExpressionAccess().getTargetPotentiallyAmbiguousQualifiedNameParserRuleCall_0_0(), semanticObject.getTarget());
		feeder.accept(grammarAccess.getBehaviorInvocationExpressionAccess().getTupleTupleParserRuleCall_1_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns BitStringUnaryExpression
	 *     Expression returns BitStringUnaryExpression
	 *     PrimaryExpression returns BitStringUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns BitStringUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns BitStringUnaryExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns BitStringUnaryExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns BitStringUnaryExpression
	 *     BaseExpression returns BitStringUnaryExpression
	 *     ParenthesizedExpression returns BitStringUnaryExpression
	 *     SequenceElement returns BitStringUnaryExpression
	 *     Index returns BitStringUnaryExpression
	 *     UnaryExpression returns BitStringUnaryExpression
	 *     PostfixOrCastExpression returns BitStringUnaryExpression
	 *     NonPostfixNonCastUnaryExpression returns BitStringUnaryExpression
	 *     BitStringUnaryExpression returns BitStringUnaryExpression
	 *     CastCompletion returns BitStringUnaryExpression
	 *     MultiplicativeExpression returns BitStringUnaryExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns BitStringUnaryExpression
	 *     AdditiveExpression returns BitStringUnaryExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns BitStringUnaryExpression
	 *     ShiftExpression returns BitStringUnaryExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns BitStringUnaryExpression
	 *     RelationalExpression returns BitStringUnaryExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns BitStringUnaryExpression
	 *     ClassificationExpression returns BitStringUnaryExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns BitStringUnaryExpression
	 *     EqualityExpression returns BitStringUnaryExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns BitStringUnaryExpression
	 *     AndExpression returns BitStringUnaryExpression
	 *     AndExpression.LogicalExpression_1_0 returns BitStringUnaryExpression
	 *     ExclusiveOrExpression returns BitStringUnaryExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns BitStringUnaryExpression
	 *     InclusiveOrExpression returns BitStringUnaryExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns BitStringUnaryExpression
	 *     ConditionalAndExpression returns BitStringUnaryExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns BitStringUnaryExpression
	 *     ConditionalOrExpression returns BitStringUnaryExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns BitStringUnaryExpression
	 *     ConditionalExpression returns BitStringUnaryExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns BitStringUnaryExpression
	 *     InitializationExpression returns BitStringUnaryExpression
	 *     SwitchCase returns BitStringUnaryExpression
	 *
	 * Constraint:
	 *     (operator='~' operand=UnaryExpression)
	 */
	protected void sequence_BitStringUnaryExpression(ISerializationContext context, BitStringUnaryExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getBitStringUnaryExpressionAccess().getOperatorTildeKeyword_0_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getBitStringUnaryExpressionAccess().getOperandUnaryExpressionParserRuleCall_1_0(), semanticObject.getOperand());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns BlockStatement
	 *     BlockStatement returns BlockStatement
	 *
	 * Constraint:
	 *     block=Block
	 */
	protected void sequence_BlockStatement(ISerializationContext context, BlockStatement semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBlockStatement_Block()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBlockStatement_Block()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getBlockStatementAccess().getBlockBlockParserRuleCall_0(), semanticObject.getBlock());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Block returns Block
	 *
	 * Constraint:
	 *     statement+=DocumentedStatement*
	 */
	protected void sequence_Block(ISerializationContext context, Block semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns BooleanLiteralExpression
	 *     Expression returns BooleanLiteralExpression
	 *     PrimaryExpression returns BooleanLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns BooleanLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns BooleanLiteralExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns BooleanLiteralExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns BooleanLiteralExpression
	 *     BaseExpression returns BooleanLiteralExpression
	 *     LiteralExpression returns BooleanLiteralExpression
	 *     BooleanLiteralExpression returns BooleanLiteralExpression
	 *     ParenthesizedExpression returns BooleanLiteralExpression
	 *     SequenceElement returns BooleanLiteralExpression
	 *     Index returns BooleanLiteralExpression
	 *     UnaryExpression returns BooleanLiteralExpression
	 *     PostfixOrCastExpression returns BooleanLiteralExpression
	 *     CastCompletion returns BooleanLiteralExpression
	 *     MultiplicativeExpression returns BooleanLiteralExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns BooleanLiteralExpression
	 *     AdditiveExpression returns BooleanLiteralExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns BooleanLiteralExpression
	 *     ShiftExpression returns BooleanLiteralExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns BooleanLiteralExpression
	 *     RelationalExpression returns BooleanLiteralExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns BooleanLiteralExpression
	 *     ClassificationExpression returns BooleanLiteralExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns BooleanLiteralExpression
	 *     EqualityExpression returns BooleanLiteralExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns BooleanLiteralExpression
	 *     AndExpression returns BooleanLiteralExpression
	 *     AndExpression.LogicalExpression_1_0 returns BooleanLiteralExpression
	 *     ExclusiveOrExpression returns BooleanLiteralExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns BooleanLiteralExpression
	 *     InclusiveOrExpression returns BooleanLiteralExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns BooleanLiteralExpression
	 *     ConditionalAndExpression returns BooleanLiteralExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns BooleanLiteralExpression
	 *     ConditionalOrExpression returns BooleanLiteralExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns BooleanLiteralExpression
	 *     ConditionalExpression returns BooleanLiteralExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns BooleanLiteralExpression
	 *     InitializationExpression returns BooleanLiteralExpression
	 *     SwitchCase returns BooleanLiteralExpression
	 *
	 * Constraint:
	 *     image=BOOLEAN_VALUE
	 */
	protected void sequence_BooleanLiteralExpression(ISerializationContext context, BooleanLiteralExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBooleanLiteralExpression_Image()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBooleanLiteralExpression_Image()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getBooleanLiteralExpressionAccess().getImageBOOLEAN_VALUETerminalRuleCall_0(), semanticObject.getImage());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns BooleanUnaryExpression
	 *     Expression returns BooleanUnaryExpression
	 *     PrimaryExpression returns BooleanUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns BooleanUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns BooleanUnaryExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns BooleanUnaryExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns BooleanUnaryExpression
	 *     BaseExpression returns BooleanUnaryExpression
	 *     ParenthesizedExpression returns BooleanUnaryExpression
	 *     SequenceElement returns BooleanUnaryExpression
	 *     Index returns BooleanUnaryExpression
	 *     UnaryExpression returns BooleanUnaryExpression
	 *     PostfixOrCastExpression returns BooleanUnaryExpression
	 *     NonPostfixNonCastUnaryExpression returns BooleanUnaryExpression
	 *     BooleanUnaryExpression returns BooleanUnaryExpression
	 *     CastCompletion returns BooleanUnaryExpression
	 *     MultiplicativeExpression returns BooleanUnaryExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns BooleanUnaryExpression
	 *     AdditiveExpression returns BooleanUnaryExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns BooleanUnaryExpression
	 *     ShiftExpression returns BooleanUnaryExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns BooleanUnaryExpression
	 *     RelationalExpression returns BooleanUnaryExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns BooleanUnaryExpression
	 *     ClassificationExpression returns BooleanUnaryExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns BooleanUnaryExpression
	 *     EqualityExpression returns BooleanUnaryExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns BooleanUnaryExpression
	 *     AndExpression returns BooleanUnaryExpression
	 *     AndExpression.LogicalExpression_1_0 returns BooleanUnaryExpression
	 *     ExclusiveOrExpression returns BooleanUnaryExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns BooleanUnaryExpression
	 *     InclusiveOrExpression returns BooleanUnaryExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns BooleanUnaryExpression
	 *     ConditionalAndExpression returns BooleanUnaryExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns BooleanUnaryExpression
	 *     ConditionalOrExpression returns BooleanUnaryExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns BooleanUnaryExpression
	 *     ConditionalExpression returns BooleanUnaryExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns BooleanUnaryExpression
	 *     InitializationExpression returns BooleanUnaryExpression
	 *     SwitchCase returns BooleanUnaryExpression
	 *
	 * Constraint:
	 *     (operator='!' operand=UnaryExpression)
	 */
	protected void sequence_BooleanUnaryExpression(ISerializationContext context, BooleanUnaryExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getBooleanUnaryExpressionAccess().getOperatorExclamationMarkKeyword_0_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getBooleanUnaryExpressionAccess().getOperandUnaryExpressionParserRuleCall_1_0(), semanticObject.getOperand());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns BreakStatement
	 *     BreakStatement returns BreakStatement
	 *
	 * Constraint:
	 *     {BreakStatement}
	 */
	protected void sequence_BreakStatement(ISerializationContext context, BreakStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns CastExpression
	 *     Expression returns CastExpression
	 *     PrimaryExpression returns CastExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns CastExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns CastExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns CastExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns CastExpression
	 *     BaseExpression returns CastExpression
	 *     ParenthesizedExpression returns CastExpression
	 *     SequenceElement returns CastExpression
	 *     Index returns CastExpression
	 *     UnaryExpression returns CastExpression
	 *     PostfixOrCastExpression returns CastExpression
	 *     CastExpression returns CastExpression
	 *     CastCompletion returns CastExpression
	 *     MultiplicativeExpression returns CastExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns CastExpression
	 *     AdditiveExpression returns CastExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns CastExpression
	 *     ShiftExpression returns CastExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns CastExpression
	 *     RelationalExpression returns CastExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns CastExpression
	 *     ClassificationExpression returns CastExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns CastExpression
	 *     EqualityExpression returns CastExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns CastExpression
	 *     AndExpression returns CastExpression
	 *     AndExpression.LogicalExpression_1_0 returns CastExpression
	 *     ExclusiveOrExpression returns CastExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns CastExpression
	 *     InclusiveOrExpression returns CastExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns CastExpression
	 *     ConditionalAndExpression returns CastExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns CastExpression
	 *     ConditionalOrExpression returns CastExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns CastExpression
	 *     ConditionalExpression returns CastExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns CastExpression
	 *     InitializationExpression returns CastExpression
	 *     SwitchCase returns CastExpression
	 *
	 * Constraint:
	 *     ((isAny?='any' | typeName=QualifiedName) operand=CastCompletion)
	 */
	protected void sequence_CastExpression(ISerializationContext context, CastExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ClassDeclaration returns ClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause?
	 *     )
	 */
	protected void sequence_ClassDeclaration(ISerializationContext context, ClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns ClassDefinition
	 *     ClassifierDefinitionOrStub returns ClassDefinition
	 *     ClassDefinitionOrStub returns ClassDefinition
	 *     ClassMemberDefinition returns ClassDefinition
	 *     ActiveClassMemberDefinition returns ClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         (isStub?=';' | ownedMember+=ClassMember+)?
	 *     )
	 */
	protected void sequence_ClassDeclaration_ClassDefinitionOrStub(ISerializationContext context, ClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns ClassDefinition
	 *     ClassifierDefinition returns ClassDefinition
	 *     ClassDefinition returns ClassDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         ownedMember+=ClassMember*
	 *     )
	 */
	protected void sequence_ClassDeclaration_ClassDefinition(ISerializationContext context, ClassDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ClassExtentExpression
	 *     Expression returns ClassExtentExpression
	 *     PrimaryExpression returns ClassExtentExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ClassExtentExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ClassExtentExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ClassExtentExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ClassExtentExpression
	 *     BaseExpression returns ClassExtentExpression
	 *     ParenthesizedExpression returns ClassExtentExpression
	 *     ClassExtentExpression returns ClassExtentExpression
	 *     SequenceElement returns ClassExtentExpression
	 *     Index returns ClassExtentExpression
	 *     UnaryExpression returns ClassExtentExpression
	 *     PostfixOrCastExpression returns ClassExtentExpression
	 *     CastCompletion returns ClassExtentExpression
	 *     MultiplicativeExpression returns ClassExtentExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ClassExtentExpression
	 *     AdditiveExpression returns ClassExtentExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ClassExtentExpression
	 *     ShiftExpression returns ClassExtentExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ClassExtentExpression
	 *     RelationalExpression returns ClassExtentExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ClassExtentExpression
	 *     ClassificationExpression returns ClassExtentExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ClassExtentExpression
	 *     EqualityExpression returns ClassExtentExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ClassExtentExpression
	 *     AndExpression returns ClassExtentExpression
	 *     AndExpression.LogicalExpression_1_0 returns ClassExtentExpression
	 *     ExclusiveOrExpression returns ClassExtentExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ClassExtentExpression
	 *     InclusiveOrExpression returns ClassExtentExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ClassExtentExpression
	 *     ConditionalAndExpression returns ClassExtentExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ClassExtentExpression
	 *     ConditionalOrExpression returns ClassExtentExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ClassExtentExpression
	 *     ConditionalExpression returns ClassExtentExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ClassExtentExpression
	 *     InitializationExpression returns ClassExtentExpression
	 *     SwitchCase returns ClassExtentExpression
	 *
	 * Constraint:
	 *     className=PotentiallyAmbiguousQualifiedName
	 */
	protected void sequence_ClassExtentExpression(ISerializationContext context, ClassExtentExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getClassExtentExpression_ClassName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getClassExtentExpression_ClassName()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getClassExtentExpressionAccess().getClassNamePotentiallyAmbiguousQualifiedNameParserRuleCall_0_0(), semanticObject.getClassName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     ClassMember returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT* annotation+=StereotypeAnnotation* visibility=VisibilityIndicator? definition=ClassMemberDefinition)
	 */
	protected void sequence_ClassMember(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ClassificationExpression
	 *     Expression returns ClassificationExpression
	 *     PrimaryExpression returns ClassificationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ClassificationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ClassificationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ClassificationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ClassificationExpression
	 *     BaseExpression returns ClassificationExpression
	 *     ParenthesizedExpression returns ClassificationExpression
	 *     SequenceElement returns ClassificationExpression
	 *     Index returns ClassificationExpression
	 *     UnaryExpression returns ClassificationExpression
	 *     PostfixOrCastExpression returns ClassificationExpression
	 *     CastCompletion returns ClassificationExpression
	 *     MultiplicativeExpression returns ClassificationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ClassificationExpression
	 *     AdditiveExpression returns ClassificationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ClassificationExpression
	 *     ShiftExpression returns ClassificationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ClassificationExpression
	 *     RelationalExpression returns ClassificationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ClassificationExpression
	 *     ClassificationExpression returns ClassificationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ClassificationExpression
	 *     EqualityExpression returns ClassificationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ClassificationExpression
	 *     AndExpression returns ClassificationExpression
	 *     AndExpression.LogicalExpression_1_0 returns ClassificationExpression
	 *     ExclusiveOrExpression returns ClassificationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ClassificationExpression
	 *     InclusiveOrExpression returns ClassificationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ClassificationExpression
	 *     ConditionalAndExpression returns ClassificationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ClassificationExpression
	 *     ConditionalOrExpression returns ClassificationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ClassificationExpression
	 *     ConditionalExpression returns ClassificationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ClassificationExpression
	 *     InitializationExpression returns ClassificationExpression
	 *     SwitchCase returns ClassificationExpression
	 *
	 * Constraint:
	 *     (operand=ClassificationExpression_ClassificationExpression_1_0 operator=ClassificationOperator typeName=QualifiedName)
	 */
	protected void sequence_ClassificationExpression(ISerializationContext context, ClassificationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getClassificationExpression_TypeName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getClassificationExpression_TypeName()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getClassificationExpressionAccess().getClassificationExpressionOperandAction_1_0(), semanticObject.getOperand());
		feeder.accept(grammarAccess.getClassificationExpressionAccess().getOperatorClassificationOperatorParserRuleCall_1_1_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getClassificationExpressionAccess().getTypeNameQualifiedNameParserRuleCall_1_2_0(), semanticObject.getTypeName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     ClassifierSignature returns ClassifierDefinition
	 *
	 * Constraint:
	 *     (name=Name (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? specialization=SpecializationClause?)
	 */
	protected void sequence_ClassifierSignature(ISerializationContext context, ClassifierDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ClassifierTemplateParameterDefinition returns ClassifierTemplateParameter
	 *
	 * Constraint:
	 *     (name=Name specialization=TemplateParameterConstraint?)
	 */
	protected void sequence_ClassifierTemplateParameterDefinition(ISerializationContext context, ClassifierTemplateParameter semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ClassifierTemplateParameter returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? definition=ClassifierTemplateParameterDefinition)
	 */
	protected void sequence_ClassifierTemplateParameter(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns ClassifyStatement
	 *     ClassifyStatement returns ClassifyStatement
	 *
	 * Constraint:
	 *     (
	 *         expression=Expression 
	 *         ((fromList=ClassificationFromClause toList=ClassificationToClause?) | (isReclassifyAll?=ReclassifyAllClause? toList=ClassificationToClause))
	 *     )
	 */
	protected void sequence_ClassifyStatement(ISerializationContext context, ClassifyStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ColonQualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     (nameBinding+=NameBinding nameBinding+=NameBinding+)
	 */
	protected void sequence_ColonQualifiedName_UnqualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ConcurrentClauses returns ConcurrentClauses
	 *
	 * Constraint:
	 *     (clause+=NonFinalClause clause+=NonFinalClause*)
	 */
	protected void sequence_ConcurrentClauses(ISerializationContext context, ConcurrentClauses semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ConditionalLogicalExpression
	 *     Expression returns ConditionalLogicalExpression
	 *     PrimaryExpression returns ConditionalLogicalExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ConditionalLogicalExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ConditionalLogicalExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ConditionalLogicalExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ConditionalLogicalExpression
	 *     BaseExpression returns ConditionalLogicalExpression
	 *     ParenthesizedExpression returns ConditionalLogicalExpression
	 *     SequenceElement returns ConditionalLogicalExpression
	 *     Index returns ConditionalLogicalExpression
	 *     UnaryExpression returns ConditionalLogicalExpression
	 *     PostfixOrCastExpression returns ConditionalLogicalExpression
	 *     CastCompletion returns ConditionalLogicalExpression
	 *     MultiplicativeExpression returns ConditionalLogicalExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ConditionalLogicalExpression
	 *     AdditiveExpression returns ConditionalLogicalExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ConditionalLogicalExpression
	 *     ShiftExpression returns ConditionalLogicalExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ConditionalLogicalExpression
	 *     RelationalExpression returns ConditionalLogicalExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ConditionalLogicalExpression
	 *     ClassificationExpression returns ConditionalLogicalExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ConditionalLogicalExpression
	 *     EqualityExpression returns ConditionalLogicalExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ConditionalLogicalExpression
	 *     AndExpression returns ConditionalLogicalExpression
	 *     AndExpression.LogicalExpression_1_0 returns ConditionalLogicalExpression
	 *     ExclusiveOrExpression returns ConditionalLogicalExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ConditionalLogicalExpression
	 *     InclusiveOrExpression returns ConditionalLogicalExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ConditionalLogicalExpression
	 *     ConditionalAndExpression returns ConditionalLogicalExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ConditionalLogicalExpression
	 *     ConditionalOrExpression returns ConditionalLogicalExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ConditionalLogicalExpression
	 *     ConditionalExpression returns ConditionalLogicalExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ConditionalLogicalExpression
	 *     InitializationExpression returns ConditionalLogicalExpression
	 *     SwitchCase returns ConditionalLogicalExpression
	 *
	 * Constraint:
	 *     (
	 *         (operand1=ConditionalAndExpression_ConditionalLogicalExpression_1_0 operator='&&' operand2=InclusiveOrExpression) | 
	 *         (operand1=ConditionalOrExpression_ConditionalLogicalExpression_1_0 operator='||' operand2=ConditionalAndExpression)
	 *     )
	 */
	protected void sequence_ConditionalAndExpression_ConditionalOrExpression(ISerializationContext context, ConditionalLogicalExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ConditionalTestExpression
	 *     Expression returns ConditionalTestExpression
	 *     PrimaryExpression returns ConditionalTestExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ConditionalTestExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ConditionalTestExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ConditionalTestExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ConditionalTestExpression
	 *     BaseExpression returns ConditionalTestExpression
	 *     ParenthesizedExpression returns ConditionalTestExpression
	 *     SequenceElement returns ConditionalTestExpression
	 *     Index returns ConditionalTestExpression
	 *     UnaryExpression returns ConditionalTestExpression
	 *     PostfixOrCastExpression returns ConditionalTestExpression
	 *     CastCompletion returns ConditionalTestExpression
	 *     MultiplicativeExpression returns ConditionalTestExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ConditionalTestExpression
	 *     AdditiveExpression returns ConditionalTestExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ConditionalTestExpression
	 *     ShiftExpression returns ConditionalTestExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ConditionalTestExpression
	 *     RelationalExpression returns ConditionalTestExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ConditionalTestExpression
	 *     ClassificationExpression returns ConditionalTestExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ConditionalTestExpression
	 *     EqualityExpression returns ConditionalTestExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ConditionalTestExpression
	 *     AndExpression returns ConditionalTestExpression
	 *     AndExpression.LogicalExpression_1_0 returns ConditionalTestExpression
	 *     ExclusiveOrExpression returns ConditionalTestExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ConditionalTestExpression
	 *     InclusiveOrExpression returns ConditionalTestExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ConditionalTestExpression
	 *     ConditionalAndExpression returns ConditionalTestExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ConditionalTestExpression
	 *     ConditionalOrExpression returns ConditionalTestExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ConditionalTestExpression
	 *     ConditionalExpression returns ConditionalTestExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ConditionalTestExpression
	 *     InitializationExpression returns ConditionalTestExpression
	 *     SwitchCase returns ConditionalTestExpression
	 *
	 * Constraint:
	 *     (operand1=ConditionalExpression_ConditionalTestExpression_1_0 operand2=Expression operand3=ConditionalExpression)
	 */
	protected void sequence_ConditionalExpression(ISerializationContext context, ConditionalTestExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand1()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand1()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand2()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand2()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand3()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getConditionalTestExpression_Operand3()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getConditionalExpressionAccess().getConditionalTestExpressionOperand1Action_1_0(), semanticObject.getOperand1());
		feeder.accept(grammarAccess.getConditionalExpressionAccess().getOperand2ExpressionParserRuleCall_1_2_0(), semanticObject.getOperand2());
		feeder.accept(grammarAccess.getConditionalExpressionAccess().getOperand3ConditionalExpressionParserRuleCall_1_4_0(), semanticObject.getOperand3());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     DataTypeDeclaration returns DataTypeDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause?
	 *     )
	 */
	protected void sequence_DataTypeDeclaration(ISerializationContext context, DataTypeDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns DataTypeDefinition
	 *     ClassifierDefinitionOrStub returns DataTypeDefinition
	 *     ClassMemberDefinition returns DataTypeDefinition
	 *     ActiveClassMemberDefinition returns DataTypeDefinition
	 *     DataTypeDefinitionOrStub returns DataTypeDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         (isStub?=';' | ownedMember+=StructuredMember+)?
	 *     )
	 */
	protected void sequence_DataTypeDeclaration_DataTypeDefinitionOrStub(ISerializationContext context, DataTypeDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns DataTypeDefinition
	 *     ClassifierDefinition returns DataTypeDefinition
	 *     DataTypeDefinition returns DataTypeDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         ownedMember+=StructuredMember*
	 *     )
	 */
	protected void sequence_DataTypeDeclaration_DataTypeDefinition(ISerializationContext context, DataTypeDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns DoStatement
	 *     DoStatement returns DoStatement
	 *
	 * Constraint:
	 *     (body=Block condition=Expression)
	 */
	protected void sequence_DoStatement(ISerializationContext context, DoStatement semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getDoStatement_Body()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getDoStatement_Body()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getDoStatement_Condition()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getDoStatement_Condition()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getDoStatementAccess().getBodyBlockParserRuleCall_1_0(), semanticObject.getBody());
		feeder.accept(grammarAccess.getDoStatementAccess().getConditionExpressionParserRuleCall_4_0(), semanticObject.getCondition());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     DotQualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     (nameBinding+=NameBinding nameBinding+=NameBinding+)
	 */
	protected void sequence_DotQualifiedName_UnqualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ImportDeclaration returns ElementImportReference
	 *     ElementImportReference returns ElementImportReference
	 *
	 * Constraint:
	 *     (visibility=ImportVisibilityIndicator referentName=QualifiedName alias=Name?)
	 */
	protected void sequence_ElementImportReference(ISerializationContext context, ElementImportReference semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns EmptyStatement
	 *     EmptyStatement returns EmptyStatement
	 *
	 * Constraint:
	 *     {EmptyStatement}
	 */
	protected void sequence_EmptyStatement(ISerializationContext context, EmptyStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     EnumerationDeclaration returns EnumerationDefinition
	 *
	 * Constraint:
	 *     (name=Name specialization=SpecializationClause?)
	 */
	protected void sequence_EnumerationDeclaration(ISerializationContext context, EnumerationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns EnumerationDefinition
	 *     ClassifierDefinitionOrStub returns EnumerationDefinition
	 *     ClassMemberDefinition returns EnumerationDefinition
	 *     ActiveClassMemberDefinition returns EnumerationDefinition
	 *     EnumerationDefinitionOrStub returns EnumerationDefinition
	 *
	 * Constraint:
	 *     (name=Name specialization=SpecializationClause? (isStub?=';' | (ownedMember+=EnumerationLiteralName ownedMember+=EnumerationLiteralName*))?)
	 */
	protected void sequence_EnumerationDeclaration_EnumerationDefinitionOrStub(ISerializationContext context, EnumerationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns EnumerationDefinition
	 *     ClassifierDefinition returns EnumerationDefinition
	 *     EnumerationDefinition returns EnumerationDefinition
	 *
	 * Constraint:
	 *     (name=Name specialization=SpecializationClause? (ownedMember+=EnumerationLiteralName ownedMember+=EnumerationLiteralName*)?)
	 */
	protected void sequence_EnumerationDeclaration_EnumerationDefinition(ISerializationContext context, EnumerationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     EnumerationLiteralNameDefinition returns EnumerationLiteralName
	 *
	 * Constraint:
	 *     name=Name
	 */
	protected void sequence_EnumerationLiteralNameDefinition(ISerializationContext context, EnumerationLiteralName semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getMemberDefinition_Name()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getMemberDefinition_Name()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getEnumerationLiteralNameDefinitionAccess().getNameNameParserRuleCall_0(), semanticObject.getName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     EnumerationLiteralName returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? definition=EnumerationLiteralNameDefinition)
	 */
	protected void sequence_EnumerationLiteralName(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns EqualityExpression
	 *     Expression returns EqualityExpression
	 *     PrimaryExpression returns EqualityExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns EqualityExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns EqualityExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns EqualityExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns EqualityExpression
	 *     BaseExpression returns EqualityExpression
	 *     ParenthesizedExpression returns EqualityExpression
	 *     SequenceElement returns EqualityExpression
	 *     Index returns EqualityExpression
	 *     UnaryExpression returns EqualityExpression
	 *     PostfixOrCastExpression returns EqualityExpression
	 *     CastCompletion returns EqualityExpression
	 *     MultiplicativeExpression returns EqualityExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns EqualityExpression
	 *     AdditiveExpression returns EqualityExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns EqualityExpression
	 *     ShiftExpression returns EqualityExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns EqualityExpression
	 *     RelationalExpression returns EqualityExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns EqualityExpression
	 *     ClassificationExpression returns EqualityExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns EqualityExpression
	 *     EqualityExpression returns EqualityExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns EqualityExpression
	 *     AndExpression returns EqualityExpression
	 *     AndExpression.LogicalExpression_1_0 returns EqualityExpression
	 *     ExclusiveOrExpression returns EqualityExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns EqualityExpression
	 *     InclusiveOrExpression returns EqualityExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns EqualityExpression
	 *     ConditionalAndExpression returns EqualityExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns EqualityExpression
	 *     ConditionalOrExpression returns EqualityExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns EqualityExpression
	 *     ConditionalExpression returns EqualityExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns EqualityExpression
	 *     InitializationExpression returns EqualityExpression
	 *     SwitchCase returns EqualityExpression
	 *
	 * Constraint:
	 *     (operand1=EqualityExpression_EqualityExpression_1_0 operator=EqualityOperator operand2=ClassificationExpression)
	 */
	protected void sequence_EqualityExpression(ISerializationContext context, EqualityExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getEqualityExpressionAccess().getEqualityExpressionOperand1Action_1_0(), semanticObject.getOperand1());
		feeder.accept(grammarAccess.getEqualityExpressionAccess().getOperatorEqualityOperatorParserRuleCall_1_1_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getEqualityExpressionAccess().getOperand2ClassificationExpressionParserRuleCall_1_2_0(), semanticObject.getOperand2());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns ExpressionStatement
	 *     ExpressionStatement returns ExpressionStatement
	 *
	 * Constraint:
	 *     expression=Expression
	 */
	protected void sequence_ExpressionStatement(ISerializationContext context, ExpressionStatement semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getExpressionStatement_Expression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getExpressionStatement_Expression()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getExpressionStatementAccess().getExpressionExpressionParserRuleCall_0_0(), semanticObject.getExpression());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     LeftHandSide returns FeatureLeftHandSide
	 *     FeatureLeftHandSide returns FeatureLeftHandSide
	 *
	 * Constraint:
	 *     expression=PrimaryExpression
	 */
	protected void sequence_FeatureLeftHandSide(ISerializationContext context, FeatureLeftHandSide semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFeatureLeftHandSide_Expression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFeatureLeftHandSide_Expression()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getFeatureLeftHandSideAccess().getExpressionPrimaryExpressionParserRuleCall_0(), semanticObject.getExpression());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns ForStatement
	 *     ForStatement returns ForStatement
	 *
	 * Constraint:
	 *     (variableDefinition+=LoopVariableDefinition variableDefinition+=LoopVariableDefinition* body=Block)
	 */
	protected void sequence_ForStatement(ISerializationContext context, ForStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     FormalParameterDefinition returns NonReturnParameter
	 *
	 * Constraint:
	 *     (direction=ParameterDirection name=Name typePart=TypePart)
	 */
	protected void sequence_FormalParameterDefinition(ISerializationContext context, NonReturnParameter semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_Direction()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_Direction()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getMemberDefinition_Name()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getMemberDefinition_Name()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_TypePart()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_TypePart()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getFormalParameterDefinitionAccess().getDirectionParameterDirectionParserRuleCall_0_0(), semanticObject.getDirection());
		feeder.accept(grammarAccess.getFormalParameterDefinitionAccess().getNameNameParserRuleCall_1_0(), semanticObject.getName());
		feeder.accept(grammarAccess.getFormalParameterDefinitionAccess().getTypePartTypePartParserRuleCall_3_0(), semanticObject.getTypePart());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     FormalParameter returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? annotation+=StereotypeAnnotation* definition=FormalParameterDefinition)
	 */
	protected void sequence_FormalParameter(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns IfStatement
	 *     IfStatement returns IfStatement
	 *
	 * Constraint:
	 *     (nonFinalClauses+=ConcurrentClauses nonFinalClauses+=ConcurrentClauses* finalClause=Block?)
	 */
	protected void sequence_IfStatement(ISerializationContext context, IfStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns InLineStatement
	 *     InLineStatement returns InLineStatement
	 *
	 * Constraint:
	 *     code=INLINE_STATEMENT
	 */
	protected void sequence_InLineStatement(ISerializationContext context, InLineStatement semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInLineStatement_Code()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInLineStatement_Code()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getInLineStatementAccess().getCodeINLINE_STATEMENTTerminalRuleCall_0(), semanticObject.getCode());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     IndexedNamedExpression returns NamedExpression
	 *
	 * Constraint:
	 *     (name=Name index=Index? expression=Expression)
	 */
	protected void sequence_IndexedNamedExpression(ISerializationContext context, NamedExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     LinkOperationTuple returns NamedTuple
	 *     IndexedNamedTupleExpressionList returns NamedTuple
	 *
	 * Constraint:
	 *     (namedExpression+=IndexedNamedExpression namedExpression+=IndexedNamedExpression*)
	 */
	protected void sequence_IndexedNamedTupleExpressionList(ISerializationContext context, NamedTuple semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Expression returns InstanceCreationExpression
	 *     PrimaryExpression returns InstanceCreationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns InstanceCreationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns InstanceCreationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns InstanceCreationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns InstanceCreationExpression
	 *     BaseExpression returns InstanceCreationExpression
	 *     ParenthesizedExpression returns InstanceCreationExpression
	 *     InstanceCreationOrSequenceConstructionExpression returns InstanceCreationExpression
	 *     SequenceElement returns InstanceCreationExpression
	 *     Index returns InstanceCreationExpression
	 *     UnaryExpression returns InstanceCreationExpression
	 *     PostfixOrCastExpression returns InstanceCreationExpression
	 *     CastCompletion returns InstanceCreationExpression
	 *     MultiplicativeExpression returns InstanceCreationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns InstanceCreationExpression
	 *     AdditiveExpression returns InstanceCreationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns InstanceCreationExpression
	 *     ShiftExpression returns InstanceCreationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns InstanceCreationExpression
	 *     RelationalExpression returns InstanceCreationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns InstanceCreationExpression
	 *     ClassificationExpression returns InstanceCreationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns InstanceCreationExpression
	 *     EqualityExpression returns InstanceCreationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns InstanceCreationExpression
	 *     AndExpression returns InstanceCreationExpression
	 *     AndExpression.LogicalExpression_1_0 returns InstanceCreationExpression
	 *     ExclusiveOrExpression returns InstanceCreationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns InstanceCreationExpression
	 *     InclusiveOrExpression returns InstanceCreationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns InstanceCreationExpression
	 *     ConditionalAndExpression returns InstanceCreationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns InstanceCreationExpression
	 *     ConditionalOrExpression returns InstanceCreationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns InstanceCreationExpression
	 *     ConditionalExpression returns InstanceCreationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns InstanceCreationExpression
	 *     SwitchCase returns InstanceCreationExpression
	 *
	 * Constraint:
	 *     (constructor=QualifiedName tuple=Tuple)
	 */
	protected void sequence_InstanceCreationOrSequenceConstructionExpression(ISerializationContext context, InstanceCreationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInstanceCreationExpression_Constructor()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInstanceCreationExpression_Constructor()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getInstanceCreationOrSequenceConstructionExpressionAccess().getConstructorQualifiedNameParserRuleCall_1_1_1_0(), semanticObject.getConstructor());
		feeder.accept(grammarAccess.getInstanceCreationOrSequenceConstructionExpressionAccess().getTupleTupleParserRuleCall_1_1_2_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns InstanceCreationExpression
	 *     InitializationExpression returns InstanceCreationExpression
	 *
	 * Constraint:
	 *     ((constructor=QualifiedName tuple=Tuple) | tuple=Tuple)
	 */
	protected void sequence_InstanceCreationOrSequenceConstructionExpression_InstanceInitializationExpression(ISerializationContext context, InstanceCreationExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     InstanceCreationOrSequenceConstructionExpression returns SequenceConstructionExpression
	 *
	 * Constraint:
	 *     (typeName=QualifiedName hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?)
	 */
	protected void sequence_InstanceCreationOrSequenceConstructionExpression(ISerializationContext context, SequenceConstructionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Expression returns SequenceConstructionExpression
	 *     PrimaryExpression returns SequenceConstructionExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SequenceConstructionExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SequenceConstructionExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SequenceConstructionExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SequenceConstructionExpression
	 *     BaseExpression returns SequenceConstructionExpression
	 *     ParenthesizedExpression returns SequenceConstructionExpression
	 *     Index returns SequenceConstructionExpression
	 *     UnaryExpression returns SequenceConstructionExpression
	 *     PostfixOrCastExpression returns SequenceConstructionExpression
	 *     CastCompletion returns SequenceConstructionExpression
	 *     MultiplicativeExpression returns SequenceConstructionExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SequenceConstructionExpression
	 *     AdditiveExpression returns SequenceConstructionExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SequenceConstructionExpression
	 *     ShiftExpression returns SequenceConstructionExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SequenceConstructionExpression
	 *     RelationalExpression returns SequenceConstructionExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SequenceConstructionExpression
	 *     ClassificationExpression returns SequenceConstructionExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SequenceConstructionExpression
	 *     EqualityExpression returns SequenceConstructionExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SequenceConstructionExpression
	 *     AndExpression returns SequenceConstructionExpression
	 *     AndExpression.LogicalExpression_1_0 returns SequenceConstructionExpression
	 *     ExclusiveOrExpression returns SequenceConstructionExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SequenceConstructionExpression
	 *     InclusiveOrExpression returns SequenceConstructionExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SequenceConstructionExpression
	 *     ConditionalAndExpression returns SequenceConstructionExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SequenceConstructionExpression
	 *     ConditionalOrExpression returns SequenceConstructionExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SequenceConstructionExpression
	 *     ConditionalExpression returns SequenceConstructionExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SequenceConstructionExpression
	 *     SwitchCase returns SequenceConstructionExpression
	 *
	 * Constraint:
	 *     (
	 *         (typeName=QualifiedName hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?) | 
	 *         ((isAny?='any' | typeName=QualifiedName) hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?) | 
	 *         hasMultiplicity?='null'
	 *     )
	 */
	protected void sequence_InstanceCreationOrSequenceConstructionExpression_SequenceConstructionExpression(ISerializationContext context, SequenceConstructionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SequenceConstructionExpression
	 *     SequenceElement returns SequenceConstructionExpression
	 *     InitializationExpression returns SequenceConstructionExpression
	 *
	 * Constraint:
	 *     (
	 *         (typeName=QualifiedName hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?) | 
	 *         ((isAny?='any' | typeName=QualifiedName) hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?) | 
	 *         hasMultiplicity?='null' | 
	 *         elements=SequenceElements
	 *     )
	 */
	protected void sequence_InstanceCreationOrSequenceConstructionExpression_SequenceConstructionExpression_SequenceInitializationExpression(ISerializationContext context, SequenceConstructionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     InstanceInitializationExpression returns InstanceCreationExpression
	 *
	 * Constraint:
	 *     tuple=Tuple
	 */
	protected void sequence_InstanceInitializationExpression(ISerializationContext context, InstanceCreationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getInstanceInitializationExpressionAccess().getTupleTupleParserRuleCall_1_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns IsolationExpression
	 *     Expression returns IsolationExpression
	 *     PrimaryExpression returns IsolationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns IsolationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns IsolationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns IsolationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns IsolationExpression
	 *     BaseExpression returns IsolationExpression
	 *     ParenthesizedExpression returns IsolationExpression
	 *     SequenceElement returns IsolationExpression
	 *     Index returns IsolationExpression
	 *     UnaryExpression returns IsolationExpression
	 *     PostfixOrCastExpression returns IsolationExpression
	 *     NonPostfixNonCastUnaryExpression returns IsolationExpression
	 *     IsolationExpression returns IsolationExpression
	 *     CastCompletion returns IsolationExpression
	 *     MultiplicativeExpression returns IsolationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns IsolationExpression
	 *     AdditiveExpression returns IsolationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns IsolationExpression
	 *     ShiftExpression returns IsolationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns IsolationExpression
	 *     RelationalExpression returns IsolationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns IsolationExpression
	 *     ClassificationExpression returns IsolationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns IsolationExpression
	 *     EqualityExpression returns IsolationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns IsolationExpression
	 *     AndExpression returns IsolationExpression
	 *     AndExpression.LogicalExpression_1_0 returns IsolationExpression
	 *     ExclusiveOrExpression returns IsolationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns IsolationExpression
	 *     InclusiveOrExpression returns IsolationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns IsolationExpression
	 *     ConditionalAndExpression returns IsolationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns IsolationExpression
	 *     ConditionalOrExpression returns IsolationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns IsolationExpression
	 *     ConditionalExpression returns IsolationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns IsolationExpression
	 *     InitializationExpression returns IsolationExpression
	 *     SwitchCase returns IsolationExpression
	 *
	 * Constraint:
	 *     (operator='$' operand=UnaryExpression)
	 */
	protected void sequence_IsolationExpression(ISerializationContext context, IsolationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getIsolationExpressionAccess().getOperatorDollarSignKeyword_0_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getIsolationExpressionAccess().getOperandUnaryExpressionParserRuleCall_1_0(), semanticObject.getOperand());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns LinkOperationExpression
	 *     Expression returns LinkOperationExpression
	 *     PrimaryExpression returns LinkOperationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns LinkOperationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns LinkOperationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns LinkOperationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns LinkOperationExpression
	 *     BaseExpression returns LinkOperationExpression
	 *     ParenthesizedExpression returns LinkOperationExpression
	 *     LinkOperationExpression returns LinkOperationExpression
	 *     SequenceElement returns LinkOperationExpression
	 *     Index returns LinkOperationExpression
	 *     UnaryExpression returns LinkOperationExpression
	 *     PostfixOrCastExpression returns LinkOperationExpression
	 *     CastCompletion returns LinkOperationExpression
	 *     MultiplicativeExpression returns LinkOperationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns LinkOperationExpression
	 *     AdditiveExpression returns LinkOperationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns LinkOperationExpression
	 *     ShiftExpression returns LinkOperationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns LinkOperationExpression
	 *     RelationalExpression returns LinkOperationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns LinkOperationExpression
	 *     ClassificationExpression returns LinkOperationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns LinkOperationExpression
	 *     EqualityExpression returns LinkOperationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns LinkOperationExpression
	 *     AndExpression returns LinkOperationExpression
	 *     AndExpression.LogicalExpression_1_0 returns LinkOperationExpression
	 *     ExclusiveOrExpression returns LinkOperationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns LinkOperationExpression
	 *     InclusiveOrExpression returns LinkOperationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns LinkOperationExpression
	 *     ConditionalAndExpression returns LinkOperationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns LinkOperationExpression
	 *     ConditionalOrExpression returns LinkOperationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns LinkOperationExpression
	 *     ConditionalExpression returns LinkOperationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns LinkOperationExpression
	 *     InitializationExpression returns LinkOperationExpression
	 *     SwitchCase returns LinkOperationExpression
	 *
	 * Constraint:
	 *     (associationName=PotentiallyAmbiguousQualifiedName operation=LinkOperation tuple=LinkOperationTuple)
	 */
	protected void sequence_LinkOperationExpression(ISerializationContext context, LinkOperationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getLinkOperationExpression_AssociationName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getLinkOperationExpression_AssociationName()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getLinkOperationExpression_Operation()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getLinkOperationExpression_Operation()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getLinkOperationExpressionAccess().getAssociationNamePotentiallyAmbiguousQualifiedNameParserRuleCall_0_0(), semanticObject.getAssociationName());
		feeder.accept(grammarAccess.getLinkOperationExpressionAccess().getOperationLinkOperationParserRuleCall_2_0(), semanticObject.getOperation());
		feeder.accept(grammarAccess.getLinkOperationExpressionAccess().getTupleLinkOperationTupleParserRuleCall_3_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns LocalNameDeclarationStatement
	 *     LocalNameDeclarationStatement returns LocalNameDeclarationStatement
	 *
	 * Constraint:
	 *     (
	 *         (
	 *             (name=Name (isAny?='any' | typeName=QualifiedName) hasMultiplicity?=MultiplicityIndicator?) | 
	 *             ((isAny?='any' | typeName=QualifiedName) hasMultiplicity?=MultiplicityIndicator? name=Name)
	 *         ) 
	 *         expression=InitializationExpression
	 *     )
	 */
	protected void sequence_LocalNameDeclarationStatement(ISerializationContext context, LocalNameDeclarationStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     LoopVariableDefinition returns LoopVariableDefinition
	 *
	 * Constraint:
	 *     (
	 *         (variable=Name typeIsInferred?='in' expression1=Expression expression2=Expression?) | 
	 *         ((isAny?='any' | typeName=QualifiedName) variable=Name expression1=Expression)
	 *     )
	 */
	protected void sequence_LoopVariableDefinition(ISerializationContext context, LoopVariableDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NameBinding returns NameBinding
	 *
	 * Constraint:
	 *     (name=Name binding=TemplateBinding?)
	 */
	protected void sequence_NameBinding(ISerializationContext context, NameBinding semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns NameExpression
	 *     Expression returns NameExpression
	 *     PrimaryExpression returns NameExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns NameExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns NameExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns NameExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns NameExpression
	 *     BaseExpression returns NameExpression
	 *     NameExpression returns NameExpression
	 *     ParenthesizedExpression returns NameExpression
	 *     SequenceElement returns NameExpression
	 *     Index returns NameExpression
	 *     UnaryExpression returns NameExpression
	 *     PostfixOrCastExpression returns NameExpression
	 *     CastCompletion returns NameExpression
	 *     MultiplicativeExpression returns NameExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns NameExpression
	 *     AdditiveExpression returns NameExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns NameExpression
	 *     ShiftExpression returns NameExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns NameExpression
	 *     RelationalExpression returns NameExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns NameExpression
	 *     ClassificationExpression returns NameExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns NameExpression
	 *     EqualityExpression returns NameExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns NameExpression
	 *     AndExpression returns NameExpression
	 *     AndExpression.LogicalExpression_1_0 returns NameExpression
	 *     ExclusiveOrExpression returns NameExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns NameExpression
	 *     InclusiveOrExpression returns NameExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns NameExpression
	 *     ConditionalAndExpression returns NameExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns NameExpression
	 *     ConditionalOrExpression returns NameExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns NameExpression
	 *     ConditionalExpression returns NameExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns NameExpression
	 *     InitializationExpression returns NameExpression
	 *     SwitchCase returns NameExpression
	 *
	 * Constraint:
	 *     name=PotentiallyAmbiguousQualifiedName
	 */
	protected void sequence_NameExpression(ISerializationContext context, NameExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNameExpression_Name()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNameExpression_Name()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getNameExpressionAccess().getNamePotentiallyAmbiguousQualifiedNameParserRuleCall_0(), semanticObject.getName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     LeftHandSide returns NameLeftHandSide
	 *     NameLeftHandSide returns NameLeftHandSide
	 *
	 * Constraint:
	 *     (target=PotentiallyAmbiguousQualifiedName index=Index?)
	 */
	protected void sequence_NameLeftHandSide(ISerializationContext context, NameLeftHandSide semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamedExpression returns NamedExpression
	 *
	 * Constraint:
	 *     (name=Name expression=Expression)
	 */
	protected void sequence_NamedExpression(ISerializationContext context, NamedExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNamedExpression_Name()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNamedExpression_Name()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNamedExpression_Expression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNamedExpression_Expression()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getNamedExpressionAccess().getNameNameParserRuleCall_0_0(), semanticObject.getName());
		feeder.accept(grammarAccess.getNamedExpressionAccess().getExpressionExpressionParserRuleCall_2_0(), semanticObject.getExpression());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     TemplateBinding returns NamedTemplateBinding
	 *     NamedTemplateBinding returns NamedTemplateBinding
	 *
	 * Constraint:
	 *     (substitution+=TemplateParameterSubstitution substitution+=TemplateParameterSubstitution*)
	 */
	protected void sequence_NamedTemplateBinding(ISerializationContext context, NamedTemplateBinding semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Tuple returns NamedTuple
	 *     NamedTupleExpressionList returns NamedTuple
	 *
	 * Constraint:
	 *     (namedExpression+=NamedExpression namedExpression+=NamedExpression*)
	 */
	protected void sequence_NamedTupleExpressionList(ISerializationContext context, NamedTuple semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns NaturalLiteralExpression
	 *     Expression returns NaturalLiteralExpression
	 *     PrimaryExpression returns NaturalLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns NaturalLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns NaturalLiteralExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns NaturalLiteralExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns NaturalLiteralExpression
	 *     BaseExpression returns NaturalLiteralExpression
	 *     LiteralExpression returns NaturalLiteralExpression
	 *     NaturalLiteralExpression returns NaturalLiteralExpression
	 *     ParenthesizedExpression returns NaturalLiteralExpression
	 *     SequenceElement returns NaturalLiteralExpression
	 *     Index returns NaturalLiteralExpression
	 *     UnaryExpression returns NaturalLiteralExpression
	 *     PostfixOrCastExpression returns NaturalLiteralExpression
	 *     CastCompletion returns NaturalLiteralExpression
	 *     MultiplicativeExpression returns NaturalLiteralExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns NaturalLiteralExpression
	 *     AdditiveExpression returns NaturalLiteralExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns NaturalLiteralExpression
	 *     ShiftExpression returns NaturalLiteralExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns NaturalLiteralExpression
	 *     RelationalExpression returns NaturalLiteralExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns NaturalLiteralExpression
	 *     ClassificationExpression returns NaturalLiteralExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns NaturalLiteralExpression
	 *     EqualityExpression returns NaturalLiteralExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns NaturalLiteralExpression
	 *     AndExpression returns NaturalLiteralExpression
	 *     AndExpression.LogicalExpression_1_0 returns NaturalLiteralExpression
	 *     ExclusiveOrExpression returns NaturalLiteralExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns NaturalLiteralExpression
	 *     InclusiveOrExpression returns NaturalLiteralExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns NaturalLiteralExpression
	 *     ConditionalAndExpression returns NaturalLiteralExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns NaturalLiteralExpression
	 *     ConditionalOrExpression returns NaturalLiteralExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns NaturalLiteralExpression
	 *     ConditionalExpression returns NaturalLiteralExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns NaturalLiteralExpression
	 *     InitializationExpression returns NaturalLiteralExpression
	 *     SwitchCase returns NaturalLiteralExpression
	 *
	 * Constraint:
	 *     image=NATURAL_VALUE
	 */
	protected void sequence_NaturalLiteralExpression(ISerializationContext context, NaturalLiteralExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNaturalLiteralExpression_Image()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNaturalLiteralExpression_Image()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getNaturalLiteralExpressionAccess().getImageNATURAL_VALUETerminalRuleCall_0(), semanticObject.getImage());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SwitchDefaultClause returns Block
	 *     NonEmptyStatementSequence returns Block
	 *
	 * Constraint:
	 *     statement+=DocumentedStatement+
	 */
	protected void sequence_NonEmptyStatementSequence(ISerializationContext context, Block semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NonFinalClause returns NonFinalClause
	 *
	 * Constraint:
	 *     (condition=Expression body=Block)
	 */
	protected void sequence_NonFinalClause(ISerializationContext context, NonFinalClause semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNonFinalClause_Condition()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNonFinalClause_Condition()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getNonFinalClause_Body()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getNonFinalClause_Body()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getNonFinalClauseAccess().getConditionExpressionParserRuleCall_1_0(), semanticObject.getCondition());
		feeder.accept(grammarAccess.getNonFinalClauseAccess().getBodyBlockParserRuleCall_3_0(), semanticObject.getBody());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns NumericUnaryExpression
	 *     Expression returns NumericUnaryExpression
	 *     PrimaryExpression returns NumericUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns NumericUnaryExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns NumericUnaryExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns NumericUnaryExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns NumericUnaryExpression
	 *     BaseExpression returns NumericUnaryExpression
	 *     ParenthesizedExpression returns NumericUnaryExpression
	 *     SequenceElement returns NumericUnaryExpression
	 *     Index returns NumericUnaryExpression
	 *     UnaryExpression returns NumericUnaryExpression
	 *     PostfixOrCastExpression returns NumericUnaryExpression
	 *     NonPostfixNonCastUnaryExpression returns NumericUnaryExpression
	 *     NumericUnaryExpression returns NumericUnaryExpression
	 *     CastCompletion returns NumericUnaryExpression
	 *     MultiplicativeExpression returns NumericUnaryExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns NumericUnaryExpression
	 *     AdditiveExpression returns NumericUnaryExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns NumericUnaryExpression
	 *     ShiftExpression returns NumericUnaryExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns NumericUnaryExpression
	 *     RelationalExpression returns NumericUnaryExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns NumericUnaryExpression
	 *     ClassificationExpression returns NumericUnaryExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns NumericUnaryExpression
	 *     EqualityExpression returns NumericUnaryExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns NumericUnaryExpression
	 *     AndExpression returns NumericUnaryExpression
	 *     AndExpression.LogicalExpression_1_0 returns NumericUnaryExpression
	 *     ExclusiveOrExpression returns NumericUnaryExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns NumericUnaryExpression
	 *     InclusiveOrExpression returns NumericUnaryExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns NumericUnaryExpression
	 *     ConditionalAndExpression returns NumericUnaryExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns NumericUnaryExpression
	 *     ConditionalOrExpression returns NumericUnaryExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns NumericUnaryExpression
	 *     ConditionalExpression returns NumericUnaryExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns NumericUnaryExpression
	 *     InitializationExpression returns NumericUnaryExpression
	 *     SwitchCase returns NumericUnaryExpression
	 *
	 * Constraint:
	 *     (operator=NumericUnaryOperator operand=UnaryExpression)
	 */
	protected void sequence_NumericUnaryExpression(ISerializationContext context, NumericUnaryExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getUnaryExpression_Operand()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getNumericUnaryExpressionAccess().getOperatorNumericUnaryOperatorParserRuleCall_0_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getNumericUnaryExpressionAccess().getOperandUnaryExpressionParserRuleCall_1_0(), semanticObject.getOperand());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     OperationDeclaration returns OperationDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=FormalParameter ownedMember+=FormalParameter*)? 
	 *         ownedMember+=ReturnParameter? 
	 *         redefinition=RedefinitionClause?
	 *     )
	 */
	protected void sequence_OperationDeclaration(ISerializationContext context, OperationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ClassMemberDefinition returns OperationDefinition
	 *     ActiveClassMemberDefinition returns OperationDefinition
	 *     FeatureDefinitionOrStub returns OperationDefinition
	 *     OperationDefinitionOrStub returns OperationDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=FormalParameter ownedMember+=FormalParameter*)? 
	 *         ownedMember+=ReturnParameter? 
	 *         redefinition=RedefinitionClause? 
	 *         (isStub?=';' | body=Block)
	 *     )
	 */
	protected void sequence_OperationDeclaration_OperationDefinitionOrStub(ISerializationContext context, OperationDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackageDefinitionOrStub returns PackageDefinition
	 *     PackagedElementDefinition returns PackageDefinition
	 *
	 * Constraint:
	 *     (name=Name (isStub?=';' | ownedMember+=PackagedElement+)?)
	 */
	protected void sequence_PackageDefinitionOrStub(ISerializationContext context, PackageDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns PackageDefinition
	 *     PackageDefinition returns PackageDefinition
	 *
	 * Constraint:
	 *     (name=Name ownedMember+=PackagedElement*)
	 */
	protected void sequence_PackageDefinition(ISerializationContext context, PackageDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackageImportQualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     (nameBinding+=NameBinding (nameBinding+=NameBinding+ | nameBinding+=NameBinding+)?)
	 */
	protected void sequence_PackageImportQualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ImportDeclaration returns PackageImportReference
	 *     PackageImportReference returns PackageImportReference
	 *
	 * Constraint:
	 *     (visibility=ImportVisibilityIndicator referentName=PackageImportQualifiedName)
	 */
	protected void sequence_PackageImportReference(ISerializationContext context, PackageImportReference semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getImportReference_Visibility()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getImportReference_Visibility()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getImportReference_ReferentName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getImportReference_ReferentName()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPackageImportReferenceAccess().getVisibilityImportVisibilityIndicatorParserRuleCall_0_0(), semanticObject.getVisibility());
		feeder.accept(grammarAccess.getPackageImportReferenceAccess().getReferentNamePackageImportQualifiedNameParserRuleCall_2_0(), semanticObject.getReferentName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElement returns Member
	 *
	 * Constraint:
	 *     (
	 *         documentation+=DOCUMENTATION_COMMENT? 
	 *         annotation+=StereotypeAnnotation* 
	 *         visibility=ImportVisibilityIndicator 
	 *         definition=PackagedElementDefinition
	 *     )
	 */
	protected void sequence_PackagedElement(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TemplateBinding returns PositionalTemplateBinding
	 *     PositionalTemplateBinding returns PositionalTemplateBinding
	 *
	 * Constraint:
	 *     (argumentName+=QualifiedName argumentName+=QualifiedName*)
	 */
	protected void sequence_PositionalTemplateBinding(ISerializationContext context, PositionalTemplateBinding semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Tuple returns PositionalTuple
	 *     PositionalTupleExpressionList returns PositionalTuple
	 *     LinkOperationTuple returns PositionalTuple
	 *
	 * Constraint:
	 *     (expression+=Expression expression+=Expression*)?
	 */
	protected void sequence_PositionalTupleExpressionList(ISerializationContext context, PositionalTuple semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PostfixExpression returns IncrementOrDecrementExpression
	 *
	 * Constraint:
	 *     (operand=LeftHandSide operator=AffixOperator)
	 */
	protected void sequence_PostfixExpression(ISerializationContext context, IncrementOrDecrementExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operand()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operator()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPostfixExpressionAccess().getOperandLeftHandSideParserRuleCall_0_0(), semanticObject.getOperand());
		feeder.accept(grammarAccess.getPostfixExpressionAccess().getOperatorAffixOperatorParserRuleCall_1_0(), semanticObject.getOperator());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns IncrementOrDecrementExpression
	 *     Expression returns IncrementOrDecrementExpression
	 *     PrimaryExpression returns IncrementOrDecrementExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns IncrementOrDecrementExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns IncrementOrDecrementExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns IncrementOrDecrementExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns IncrementOrDecrementExpression
	 *     BaseExpression returns IncrementOrDecrementExpression
	 *     ParenthesizedExpression returns IncrementOrDecrementExpression
	 *     SequenceElement returns IncrementOrDecrementExpression
	 *     Index returns IncrementOrDecrementExpression
	 *     UnaryExpression returns IncrementOrDecrementExpression
	 *     PostfixOrCastExpression returns IncrementOrDecrementExpression
	 *     CastCompletion returns IncrementOrDecrementExpression
	 *     MultiplicativeExpression returns IncrementOrDecrementExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns IncrementOrDecrementExpression
	 *     AdditiveExpression returns IncrementOrDecrementExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns IncrementOrDecrementExpression
	 *     ShiftExpression returns IncrementOrDecrementExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns IncrementOrDecrementExpression
	 *     RelationalExpression returns IncrementOrDecrementExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns IncrementOrDecrementExpression
	 *     ClassificationExpression returns IncrementOrDecrementExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns IncrementOrDecrementExpression
	 *     EqualityExpression returns IncrementOrDecrementExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns IncrementOrDecrementExpression
	 *     AndExpression returns IncrementOrDecrementExpression
	 *     AndExpression.LogicalExpression_1_0 returns IncrementOrDecrementExpression
	 *     ExclusiveOrExpression returns IncrementOrDecrementExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns IncrementOrDecrementExpression
	 *     InclusiveOrExpression returns IncrementOrDecrementExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns IncrementOrDecrementExpression
	 *     ConditionalAndExpression returns IncrementOrDecrementExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns IncrementOrDecrementExpression
	 *     ConditionalOrExpression returns IncrementOrDecrementExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns IncrementOrDecrementExpression
	 *     ConditionalExpression returns IncrementOrDecrementExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns IncrementOrDecrementExpression
	 *     InitializationExpression returns IncrementOrDecrementExpression
	 *     SwitchCase returns IncrementOrDecrementExpression
	 *
	 * Constraint:
	 *     ((operator=AffixOperator operand=LeftHandSide) | (operand=LeftHandSide operator=AffixOperator))
	 */
	protected void sequence_PostfixExpression_PrefixExpression(ISerializationContext context, IncrementOrDecrementExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PotentiallyAmbiguousQualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     (nameBinding+=NameBinding (nameBinding+=NameBinding+ | (isAmbiguous?='.' nameBinding+=NameBinding nameBinding+=NameBinding*))?)
	 */
	protected void sequence_PotentiallyAmbiguousQualifiedName_UnqualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PrefixExpression returns IncrementOrDecrementExpression
	 *     NonPostfixNonCastUnaryExpression returns IncrementOrDecrementExpression
	 *
	 * Constraint:
	 *     (operator=AffixOperator operand=LeftHandSide)
	 */
	protected void sequence_PrefixExpression(ISerializationContext context, IncrementOrDecrementExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operand()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getIncrementOrDecrementExpression_Operand()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrefixExpressionAccess().getOperatorAffixOperatorParserRuleCall_0_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getPrefixExpressionAccess().getOperandLeftHandSideParserRuleCall_1_0(), semanticObject.getOperand());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     PrimaryExpression.FeatureInvocationExpression_1_0_3 returns FeatureReference
	 *
	 * Constraint:
	 *     (expression=PrimaryExpression_FeatureReference_1_0_0 nameBinding=NameBinding)
	 */
	protected void sequence_PrimaryExpression_FeatureInvocationExpression_1_0_3(ISerializationContext context, FeatureReference semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_Expression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_Expression()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_NameBinding()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_NameBinding()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_0_0(), semanticObject.getExpression());
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getNameBindingNameBindingParserRuleCall_1_0_2_0(), semanticObject.getNameBinding());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns PropertyAccessExpression
	 *     Expression returns PropertyAccessExpression
	 *     PrimaryExpression returns PropertyAccessExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns PropertyAccessExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns PropertyAccessExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns PropertyAccessExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns PropertyAccessExpression
	 *     BaseExpression returns PropertyAccessExpression
	 *     ParenthesizedExpression returns PropertyAccessExpression
	 *     SequenceElement returns PropertyAccessExpression
	 *     Index returns PropertyAccessExpression
	 *     UnaryExpression returns PropertyAccessExpression
	 *     PostfixOrCastExpression returns PropertyAccessExpression
	 *     CastCompletion returns PropertyAccessExpression
	 *     MultiplicativeExpression returns PropertyAccessExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns PropertyAccessExpression
	 *     AdditiveExpression returns PropertyAccessExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns PropertyAccessExpression
	 *     ShiftExpression returns PropertyAccessExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns PropertyAccessExpression
	 *     RelationalExpression returns PropertyAccessExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns PropertyAccessExpression
	 *     ClassificationExpression returns PropertyAccessExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns PropertyAccessExpression
	 *     EqualityExpression returns PropertyAccessExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns PropertyAccessExpression
	 *     AndExpression returns PropertyAccessExpression
	 *     AndExpression.LogicalExpression_1_0 returns PropertyAccessExpression
	 *     ExclusiveOrExpression returns PropertyAccessExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns PropertyAccessExpression
	 *     InclusiveOrExpression returns PropertyAccessExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns PropertyAccessExpression
	 *     ConditionalAndExpression returns PropertyAccessExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns PropertyAccessExpression
	 *     ConditionalOrExpression returns PropertyAccessExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns PropertyAccessExpression
	 *     ConditionalExpression returns PropertyAccessExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns PropertyAccessExpression
	 *     InitializationExpression returns PropertyAccessExpression
	 *     SwitchCase returns PropertyAccessExpression
	 *
	 * Constraint:
	 *     featureReference=PrimaryExpression_PropertyAccessExpression_1_1_3
	 */
	protected void sequence_PrimaryExpression(ISerializationContext context, PropertyAccessExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getPropertyAccessExpression_FeatureReference()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getPropertyAccessExpression_FeatureReference()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getPropertyAccessExpressionFeatureReferenceAction_1_1_3(), semanticObject.getFeatureReference());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     PrimaryExpression.PropertyAccessExpression_1_1_3 returns FeatureReference
	 *
	 * Constraint:
	 *     (expression=PrimaryExpression_FeatureReference_1_1_0 nameBinding=NameBinding)
	 */
	protected void sequence_PrimaryExpression_PropertyAccessExpression_1_1_3(ISerializationContext context, FeatureReference semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_Expression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_Expression()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_NameBinding()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFeatureReference_NameBinding()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getFeatureReferenceExpressionAction_1_1_0(), semanticObject.getExpression());
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getNameBindingNameBindingParserRuleCall_1_1_2_0(), semanticObject.getNameBinding());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SequenceAccessExpression
	 *     Expression returns SequenceAccessExpression
	 *     PrimaryExpression returns SequenceAccessExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SequenceAccessExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SequenceAccessExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SequenceAccessExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SequenceAccessExpression
	 *     BaseExpression returns SequenceAccessExpression
	 *     ParenthesizedExpression returns SequenceAccessExpression
	 *     SequenceElement returns SequenceAccessExpression
	 *     Index returns SequenceAccessExpression
	 *     UnaryExpression returns SequenceAccessExpression
	 *     PostfixOrCastExpression returns SequenceAccessExpression
	 *     CastCompletion returns SequenceAccessExpression
	 *     MultiplicativeExpression returns SequenceAccessExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SequenceAccessExpression
	 *     AdditiveExpression returns SequenceAccessExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SequenceAccessExpression
	 *     ShiftExpression returns SequenceAccessExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SequenceAccessExpression
	 *     RelationalExpression returns SequenceAccessExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SequenceAccessExpression
	 *     ClassificationExpression returns SequenceAccessExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SequenceAccessExpression
	 *     EqualityExpression returns SequenceAccessExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SequenceAccessExpression
	 *     AndExpression returns SequenceAccessExpression
	 *     AndExpression.LogicalExpression_1_0 returns SequenceAccessExpression
	 *     ExclusiveOrExpression returns SequenceAccessExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SequenceAccessExpression
	 *     InclusiveOrExpression returns SequenceAccessExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SequenceAccessExpression
	 *     ConditionalAndExpression returns SequenceAccessExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SequenceAccessExpression
	 *     ConditionalOrExpression returns SequenceAccessExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SequenceAccessExpression
	 *     ConditionalExpression returns SequenceAccessExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SequenceAccessExpression
	 *     InitializationExpression returns SequenceAccessExpression
	 *     SwitchCase returns SequenceAccessExpression
	 *
	 * Constraint:
	 *     (primary=PrimaryExpression_SequenceAccessExpression_1_3_0 index=Index)
	 */
	protected void sequence_PrimaryExpression(ISerializationContext context, SequenceAccessExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceAccessExpression_Primary()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceAccessExpression_Primary()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceAccessExpression_Index()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceAccessExpression_Index()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getSequenceAccessExpressionPrimaryAction_1_3_0(), semanticObject.getPrimary());
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getIndexIndexParserRuleCall_1_3_1_0(), semanticObject.getIndex());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     PrimaryExpression.SequenceOperationExpression_1_2_2_0_0 returns ExtentOrExpression
	 *     PrimaryExpression.SequenceReductionExpression_1_2_2_1_0 returns ExtentOrExpression
	 *     PrimaryExpression.SequenceExpansionExpression_1_2_2_2_0 returns ExtentOrExpression
	 *
	 * Constraint:
	 *     nonNameExpression=PrimaryExpression_ExtentOrExpression_1_2_0
	 */
	protected void sequence_PrimaryExpression_SequenceExpansionExpression_1_2_2_2_0_SequenceOperationExpression_1_2_2_0_0_SequenceReductionExpression_1_2_2_1_0(ISerializationContext context, ExtentOrExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getExtentOrExpression_NonNameExpression()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getExtentOrExpression_NonNameExpression()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getPrimaryExpressionAccess().getExtentOrExpressionNonNameExpressionAction_1_2_0(), semanticObject.getNonNameExpression());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SequenceExpansionExpression
	 *     Expression returns SequenceExpansionExpression
	 *     PrimaryExpression returns SequenceExpansionExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SequenceExpansionExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SequenceExpansionExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SequenceExpansionExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SequenceExpansionExpression
	 *     BaseExpression returns SequenceExpansionExpression
	 *     ParenthesizedExpression returns SequenceExpansionExpression
	 *     SequenceElement returns SequenceExpansionExpression
	 *     Index returns SequenceExpansionExpression
	 *     UnaryExpression returns SequenceExpansionExpression
	 *     PostfixOrCastExpression returns SequenceExpansionExpression
	 *     CastCompletion returns SequenceExpansionExpression
	 *     MultiplicativeExpression returns SequenceExpansionExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SequenceExpansionExpression
	 *     AdditiveExpression returns SequenceExpansionExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SequenceExpansionExpression
	 *     ShiftExpression returns SequenceExpansionExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SequenceExpansionExpression
	 *     RelationalExpression returns SequenceExpansionExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SequenceExpansionExpression
	 *     ClassificationExpression returns SequenceExpansionExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SequenceExpansionExpression
	 *     EqualityExpression returns SequenceExpansionExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SequenceExpansionExpression
	 *     AndExpression returns SequenceExpansionExpression
	 *     AndExpression.LogicalExpression_1_0 returns SequenceExpansionExpression
	 *     ExclusiveOrExpression returns SequenceExpansionExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SequenceExpansionExpression
	 *     InclusiveOrExpression returns SequenceExpansionExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SequenceExpansionExpression
	 *     ConditionalAndExpression returns SequenceExpansionExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SequenceExpansionExpression
	 *     ConditionalOrExpression returns SequenceExpansionExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SequenceExpansionExpression
	 *     ConditionalExpression returns SequenceExpansionExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SequenceExpansionExpression
	 *     InitializationExpression returns SequenceExpansionExpression
	 *     SwitchCase returns SequenceExpansionExpression
	 *
	 * Constraint:
	 *     (
	 *         (primary=PrimaryExpression_SequenceExpansionExpression_1_2_2_2_0 operation=ID variable=Name argument=Expression) | 
	 *         (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceExpansionExpression_3_2_0 operation=ID variable=Name argument=Expression)
	 *     )
	 */
	protected void sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceExpansionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SequenceOperationExpression
	 *     Expression returns SequenceOperationExpression
	 *     PrimaryExpression returns SequenceOperationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SequenceOperationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SequenceOperationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SequenceOperationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SequenceOperationExpression
	 *     BaseExpression returns SequenceOperationExpression
	 *     ParenthesizedExpression returns SequenceOperationExpression
	 *     SequenceElement returns SequenceOperationExpression
	 *     Index returns SequenceOperationExpression
	 *     UnaryExpression returns SequenceOperationExpression
	 *     PostfixOrCastExpression returns SequenceOperationExpression
	 *     CastCompletion returns SequenceOperationExpression
	 *     MultiplicativeExpression returns SequenceOperationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SequenceOperationExpression
	 *     AdditiveExpression returns SequenceOperationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SequenceOperationExpression
	 *     ShiftExpression returns SequenceOperationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SequenceOperationExpression
	 *     RelationalExpression returns SequenceOperationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SequenceOperationExpression
	 *     ClassificationExpression returns SequenceOperationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SequenceOperationExpression
	 *     EqualityExpression returns SequenceOperationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SequenceOperationExpression
	 *     AndExpression returns SequenceOperationExpression
	 *     AndExpression.LogicalExpression_1_0 returns SequenceOperationExpression
	 *     ExclusiveOrExpression returns SequenceOperationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SequenceOperationExpression
	 *     InclusiveOrExpression returns SequenceOperationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SequenceOperationExpression
	 *     ConditionalAndExpression returns SequenceOperationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SequenceOperationExpression
	 *     ConditionalOrExpression returns SequenceOperationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SequenceOperationExpression
	 *     ConditionalExpression returns SequenceOperationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SequenceOperationExpression
	 *     InitializationExpression returns SequenceOperationExpression
	 *     SwitchCase returns SequenceOperationExpression
	 *
	 * Constraint:
	 *     (
	 *         (primary=PrimaryExpression_SequenceOperationExpression_1_2_2_0_0 operation=QualifiedName tuple=Tuple) | 
	 *         (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceOperationExpression_3_0_0 operation=QualifiedName tuple=Tuple)
	 *     )
	 */
	protected void sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceOperationExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SequenceReductionExpression
	 *     Expression returns SequenceReductionExpression
	 *     PrimaryExpression returns SequenceReductionExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SequenceReductionExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SequenceReductionExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SequenceReductionExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SequenceReductionExpression
	 *     BaseExpression returns SequenceReductionExpression
	 *     ParenthesizedExpression returns SequenceReductionExpression
	 *     SequenceElement returns SequenceReductionExpression
	 *     Index returns SequenceReductionExpression
	 *     UnaryExpression returns SequenceReductionExpression
	 *     PostfixOrCastExpression returns SequenceReductionExpression
	 *     CastCompletion returns SequenceReductionExpression
	 *     MultiplicativeExpression returns SequenceReductionExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SequenceReductionExpression
	 *     AdditiveExpression returns SequenceReductionExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SequenceReductionExpression
	 *     ShiftExpression returns SequenceReductionExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SequenceReductionExpression
	 *     RelationalExpression returns SequenceReductionExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SequenceReductionExpression
	 *     ClassificationExpression returns SequenceReductionExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SequenceReductionExpression
	 *     EqualityExpression returns SequenceReductionExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SequenceReductionExpression
	 *     AndExpression returns SequenceReductionExpression
	 *     AndExpression.LogicalExpression_1_0 returns SequenceReductionExpression
	 *     ExclusiveOrExpression returns SequenceReductionExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SequenceReductionExpression
	 *     InclusiveOrExpression returns SequenceReductionExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SequenceReductionExpression
	 *     ConditionalAndExpression returns SequenceReductionExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SequenceReductionExpression
	 *     ConditionalOrExpression returns SequenceReductionExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SequenceReductionExpression
	 *     ConditionalExpression returns SequenceReductionExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SequenceReductionExpression
	 *     InitializationExpression returns SequenceReductionExpression
	 *     SwitchCase returns SequenceReductionExpression
	 *
	 * Constraint:
	 *     (
	 *         (primary=PrimaryExpression_SequenceReductionExpression_1_2_2_1_0 isOrdered?='ordered'? behaviorName=QualifiedName) | 
	 *         (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceReductionExpression_3_1_0 isOrdered?='ordered'? behaviorName=QualifiedName)
	 *     )
	 */
	protected void sequence_PrimaryExpression_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceReductionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns FeatureInvocationExpression
	 *     Expression returns FeatureInvocationExpression
	 *     PrimaryExpression returns FeatureInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns FeatureInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns FeatureInvocationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns FeatureInvocationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns FeatureInvocationExpression
	 *     BaseExpression returns FeatureInvocationExpression
	 *     ParenthesizedExpression returns FeatureInvocationExpression
	 *     SequenceElement returns FeatureInvocationExpression
	 *     Index returns FeatureInvocationExpression
	 *     UnaryExpression returns FeatureInvocationExpression
	 *     PostfixOrCastExpression returns FeatureInvocationExpression
	 *     CastCompletion returns FeatureInvocationExpression
	 *     MultiplicativeExpression returns FeatureInvocationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns FeatureInvocationExpression
	 *     AdditiveExpression returns FeatureInvocationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns FeatureInvocationExpression
	 *     ShiftExpression returns FeatureInvocationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns FeatureInvocationExpression
	 *     RelationalExpression returns FeatureInvocationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns FeatureInvocationExpression
	 *     ClassificationExpression returns FeatureInvocationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns FeatureInvocationExpression
	 *     EqualityExpression returns FeatureInvocationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns FeatureInvocationExpression
	 *     AndExpression returns FeatureInvocationExpression
	 *     AndExpression.LogicalExpression_1_0 returns FeatureInvocationExpression
	 *     ExclusiveOrExpression returns FeatureInvocationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns FeatureInvocationExpression
	 *     InclusiveOrExpression returns FeatureInvocationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns FeatureInvocationExpression
	 *     ConditionalAndExpression returns FeatureInvocationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns FeatureInvocationExpression
	 *     ConditionalOrExpression returns FeatureInvocationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns FeatureInvocationExpression
	 *     ConditionalExpression returns FeatureInvocationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns FeatureInvocationExpression
	 *     InitializationExpression returns FeatureInvocationExpression
	 *     SwitchCase returns FeatureInvocationExpression
	 *
	 * Constraint:
	 *     ((target=PrimaryExpression_FeatureInvocationExpression_1_0_3 tuple=Tuple) | tuple=Tuple)
	 */
	protected void sequence_PrimaryExpression_ThisExpression(ISerializationContext context, FeatureInvocationExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PropertyDefinition returns PropertyDefinition
	 *     PropertyDeclaration returns PropertyDefinition
	 *
	 * Constraint:
	 *     (name=Name isComposite?='compose'? typePart=TypePart)
	 */
	protected void sequence_PropertyDeclaration(ISerializationContext context, PropertyDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SpecializationClause returns QualifiedNameList
	 *     RedefinitionClause returns QualifiedNameList
	 *     ClassificationFromClause returns QualifiedNameList
	 *     ClassificationToClause returns QualifiedNameList
	 *     QualifiedNameList returns QualifiedNameList
	 *
	 * Constraint:
	 *     (name+=QualifiedName name+=QualifiedName*)
	 */
	protected void sequence_QualifiedNameList(ISerializationContext context, QualifiedNameList semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDeclaration returns QualifiedName
	 *     QualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     (nameBinding+=NameBinding (nameBinding+=NameBinding+ | nameBinding+=NameBinding+)?)
	 */
	protected void sequence_QualifiedName_UnqualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ActiveClassMemberDefinition returns ReceptionDefinition
	 *     ActiveFeatureDefinitionOrStub returns ReceptionDefinition
	 *     ReceptionDefinition returns ReceptionDefinition
	 *
	 * Constraint:
	 *     signalName=QualifiedName
	 */
	protected void sequence_ReceptionDefinition(ISerializationContext context, ReceptionDefinition semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getReceptionDefinition_SignalName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getReceptionDefinition_SignalName()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getReceptionDefinitionAccess().getSignalNameQualifiedNameParserRuleCall_1_0(), semanticObject.getSignalName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns RelationalExpression
	 *     Expression returns RelationalExpression
	 *     PrimaryExpression returns RelationalExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns RelationalExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns RelationalExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns RelationalExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns RelationalExpression
	 *     BaseExpression returns RelationalExpression
	 *     ParenthesizedExpression returns RelationalExpression
	 *     SequenceElement returns RelationalExpression
	 *     Index returns RelationalExpression
	 *     UnaryExpression returns RelationalExpression
	 *     PostfixOrCastExpression returns RelationalExpression
	 *     CastCompletion returns RelationalExpression
	 *     MultiplicativeExpression returns RelationalExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns RelationalExpression
	 *     AdditiveExpression returns RelationalExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns RelationalExpression
	 *     ShiftExpression returns RelationalExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns RelationalExpression
	 *     RelationalExpression returns RelationalExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns RelationalExpression
	 *     ClassificationExpression returns RelationalExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns RelationalExpression
	 *     EqualityExpression returns RelationalExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns RelationalExpression
	 *     AndExpression returns RelationalExpression
	 *     AndExpression.LogicalExpression_1_0 returns RelationalExpression
	 *     ExclusiveOrExpression returns RelationalExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns RelationalExpression
	 *     InclusiveOrExpression returns RelationalExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns RelationalExpression
	 *     ConditionalAndExpression returns RelationalExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns RelationalExpression
	 *     ConditionalOrExpression returns RelationalExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns RelationalExpression
	 *     ConditionalExpression returns RelationalExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns RelationalExpression
	 *     InitializationExpression returns RelationalExpression
	 *     SwitchCase returns RelationalExpression
	 *
	 * Constraint:
	 *     (operand1=RelationalExpression_RelationalExpression_1_0 operator=RelationalOperator operand2=ShiftExpression)
	 */
	protected void sequence_RelationalExpression(ISerializationContext context, RelationalExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getRelationalExpressionAccess().getRelationalExpressionOperand1Action_1_0(), semanticObject.getOperand1());
		feeder.accept(grammarAccess.getRelationalExpressionAccess().getOperatorRelationalOperatorParserRuleCall_1_1_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getRelationalExpressionAccess().getOperand2ShiftExpressionParserRuleCall_1_2_0(), semanticObject.getOperand2());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     ReturnParameterDefinition returns ReturnParameter
	 *
	 * Constraint:
	 *     typePart=TypePart
	 */
	protected void sequence_ReturnParameterDefinition(ISerializationContext context, ReturnParameter semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_TypePart()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getFormalParameter_TypePart()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getReturnParameterDefinitionAccess().getTypePartTypePartParserRuleCall_1_0(), semanticObject.getTypePart());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     ReturnParameter returns Member
	 *
	 * Constraint:
	 *     definition=ReturnParameterDefinition
	 */
	protected void sequence_ReturnParameter(ISerializationContext context, Member semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getMember_Definition()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getMember_Definition()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getReturnParameterAccess().getDefinitionReturnParameterDefinitionParserRuleCall_0(), semanticObject.getDefinition());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns ReturnStatement
	 *     ReturnStatement returns ReturnStatement
	 *
	 * Constraint:
	 *     expression=Expression?
	 */
	protected void sequence_ReturnStatement(ISerializationContext context, ReturnStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SequenceConstructionExpression returns SequenceConstructionExpression
	 *
	 * Constraint:
	 *     (((isAny?='any' | typeName=QualifiedName) hasMultiplicity?=MultiplicityIndicator? elements=SequenceElements?) | hasMultiplicity?='null')
	 */
	protected void sequence_SequenceConstructionExpression(ISerializationContext context, SequenceConstructionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SequenceElements returns SequenceExpressionList
	 *     SequenceExpressionList returns SequenceExpressionList
	 *
	 * Constraint:
	 *     (element+=SequenceElement element+=SequenceElement*)
	 */
	protected void sequence_SequenceExpressionList(ISerializationContext context, SequenceExpressionList semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SequenceInitializationExpression returns SequenceConstructionExpression
	 *
	 * Constraint:
	 *     elements=SequenceElements
	 */
	protected void sequence_SequenceInitializationExpression(ISerializationContext context, SequenceConstructionExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceConstructionExpression_Elements()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceConstructionExpression_Elements()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getSequenceInitializationExpressionAccess().getElementsSequenceElementsParserRuleCall_2_0(), semanticObject.getElements());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SequenceOperationOrReductionOrExpansionExpression returns SequenceExpansionExpression
	 *
	 * Constraint:
	 *     (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceExpansionExpression_3_2_0 operation=ID variable=Name argument=Expression)
	 */
	protected void sequence_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceExpansionExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Primary()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Primary()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Operation()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Operation()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Variable()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Variable()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Argument()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceExpansionExpression_Argument()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getSequenceExpansionExpressionPrimaryAction_3_2_0(), semanticObject.getPrimary());
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getOperationIDTerminalRuleCall_3_2_1_0(), semanticObject.getOperation());
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getVariableNameParserRuleCall_3_2_2_0(), semanticObject.getVariable());
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getArgumentExpressionParserRuleCall_3_2_4_0(), semanticObject.getArgument());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SequenceOperationOrReductionOrExpansionExpression.SequenceOperationExpression_3_0_0 returns ExtentOrExpression
	 *     SequenceOperationOrReductionOrExpansionExpression.SequenceReductionExpression_3_1_0 returns ExtentOrExpression
	 *     SequenceOperationOrReductionOrExpansionExpression.SequenceExpansionExpression_3_2_0 returns ExtentOrExpression
	 *
	 * Constraint:
	 *     name=PotentiallyAmbiguousQualifiedName
	 */
	protected void sequence_SequenceOperationOrReductionOrExpansionExpression_SequenceExpansionExpression_3_2_0_SequenceOperationExpression_3_0_0_SequenceReductionExpression_3_1_0(ISerializationContext context, ExtentOrExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getExtentOrExpression_Name()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getExtentOrExpression_Name()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getNamePotentiallyAmbiguousQualifiedNameParserRuleCall_1_0(), semanticObject.getName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SequenceOperationOrReductionOrExpansionExpression returns SequenceOperationExpression
	 *
	 * Constraint:
	 *     (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceOperationExpression_3_0_0 operation=QualifiedName tuple=Tuple)
	 */
	protected void sequence_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceOperationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceOperationExpression_Primary()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceOperationExpression_Primary()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceOperationExpression_Operation()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceOperationExpression_Operation()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getSequenceOperationExpressionPrimaryAction_3_0_0(), semanticObject.getPrimary());
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getOperationQualifiedNameParserRuleCall_3_0_1_0(), semanticObject.getOperation());
		feeder.accept(grammarAccess.getSequenceOperationOrReductionOrExpansionExpressionAccess().getTupleTupleParserRuleCall_3_0_2_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SequenceOperationOrReductionOrExpansionExpression returns SequenceReductionExpression
	 *
	 * Constraint:
	 *     (primary=SequenceOperationOrReductionOrExpansionExpression_SequenceReductionExpression_3_1_0 isOrdered?='ordered'? behaviorName=QualifiedName)
	 */
	protected void sequence_SequenceOperationOrReductionOrExpansionExpression(ISerializationContext context, SequenceReductionExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SequenceElements returns SequenceRange
	 *     SequenceRange returns SequenceRange
	 *
	 * Constraint:
	 *     (rangeLower=Expression rangeUpper=Expression)
	 */
	protected void sequence_SequenceRange(ISerializationContext context, SequenceRange semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceRange_RangeLower()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceRange_RangeLower()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getSequenceRange_RangeUpper()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getSequenceRange_RangeUpper()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getSequenceRangeAccess().getRangeLowerExpressionParserRuleCall_0_0(), semanticObject.getRangeLower());
		feeder.accept(grammarAccess.getSequenceRangeAccess().getRangeUpperExpressionParserRuleCall_2_0(), semanticObject.getRangeUpper());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ShiftExpression
	 *     Expression returns ShiftExpression
	 *     PrimaryExpression returns ShiftExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ShiftExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ShiftExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ShiftExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ShiftExpression
	 *     BaseExpression returns ShiftExpression
	 *     ParenthesizedExpression returns ShiftExpression
	 *     SequenceElement returns ShiftExpression
	 *     Index returns ShiftExpression
	 *     UnaryExpression returns ShiftExpression
	 *     PostfixOrCastExpression returns ShiftExpression
	 *     CastCompletion returns ShiftExpression
	 *     MultiplicativeExpression returns ShiftExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ShiftExpression
	 *     AdditiveExpression returns ShiftExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ShiftExpression
	 *     ShiftExpression returns ShiftExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ShiftExpression
	 *     RelationalExpression returns ShiftExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ShiftExpression
	 *     ClassificationExpression returns ShiftExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ShiftExpression
	 *     EqualityExpression returns ShiftExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ShiftExpression
	 *     AndExpression returns ShiftExpression
	 *     AndExpression.LogicalExpression_1_0 returns ShiftExpression
	 *     ExclusiveOrExpression returns ShiftExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ShiftExpression
	 *     InclusiveOrExpression returns ShiftExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ShiftExpression
	 *     ConditionalAndExpression returns ShiftExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ShiftExpression
	 *     ConditionalOrExpression returns ShiftExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ShiftExpression
	 *     ConditionalExpression returns ShiftExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ShiftExpression
	 *     InitializationExpression returns ShiftExpression
	 *     SwitchCase returns ShiftExpression
	 *
	 * Constraint:
	 *     (operand1=ShiftExpression_ShiftExpression_1_0 operator=ShiftOperator operand2=AdditiveExpression)
	 */
	protected void sequence_ShiftExpression(ISerializationContext context, ShiftExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand1()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operator()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getBinaryExpression_Operand2()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getShiftExpressionAccess().getShiftExpressionOperand1Action_1_0(), semanticObject.getOperand1());
		feeder.accept(grammarAccess.getShiftExpressionAccess().getOperatorShiftOperatorParserRuleCall_1_1_0(), semanticObject.getOperator());
		feeder.accept(grammarAccess.getShiftExpressionAccess().getOperand2AdditiveExpressionParserRuleCall_1_2_0(), semanticObject.getOperand2());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     SignalDeclaration returns SignalDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause?
	 *     )
	 */
	protected void sequence_SignalDeclaration(ISerializationContext context, SignalDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     PackagedElementDefinition returns SignalDefinition
	 *     ClassifierDefinitionOrStub returns SignalDefinition
	 *     ClassMemberDefinition returns SignalDefinition
	 *     ActiveClassMemberDefinition returns SignalDefinition
	 *     SignalDefinitionOrStub returns SignalDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         (isStub?=';' | ownedMember+=StructuredMember+)?
	 *     )
	 */
	protected void sequence_SignalDeclaration_SignalDefinitionOrStub(ISerializationContext context, SignalDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     NamespaceDefinition returns SignalDefinition
	 *     ClassifierDefinition returns SignalDefinition
	 *     SignalDefinition returns SignalDefinition
	 *
	 * Constraint:
	 *     (
	 *         isAbstract?='abstract'? 
	 *         name=Name 
	 *         (ownedMember+=ClassifierTemplateParameter ownedMember+=ClassifierTemplateParameter*)? 
	 *         specialization=SpecializationClause? 
	 *         ownedMember+=StructuredMember*
	 *     )
	 */
	protected void sequence_SignalDeclaration_SignalDefinition(ISerializationContext context, SignalDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SignalReceptionDeclaration returns SignalReceptionDefinition
	 *
	 * Constraint:
	 *     (name=Name specialization=SpecializationClause?)
	 */
	protected void sequence_SignalReceptionDeclaration(ISerializationContext context, SignalReceptionDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     ActiveClassMemberDefinition returns SignalReceptionDefinition
	 *     ActiveFeatureDefinitionOrStub returns SignalReceptionDefinition
	 *     SignalReceptionDefinitionOrStub returns SignalReceptionDefinition
	 *
	 * Constraint:
	 *     (name=Name specialization=SpecializationClause? (isStub?=';' | ownedMember+=StructuredMember+)?)
	 */
	protected void sequence_SignalReceptionDeclaration_SignalReceptionDefinitionOrStub(ISerializationContext context, SignalReceptionDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     StatementSequence returns Block
	 *
	 * Constraint:
	 *     statement+=DocumentedStatement*
	 */
	protected void sequence_StatementSequence(ISerializationContext context, Block semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     StereotypeAnnotation returns StereotypeAnnotation
	 *
	 * Constraint:
	 *     (stereotypeName=QualifiedName (names=QualifiedNameList | taggedValues=TaggedValueList)?)
	 */
	protected void sequence_StereotypeAnnotation(ISerializationContext context, StereotypeAnnotation semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns StringLiteralExpression
	 *     Expression returns StringLiteralExpression
	 *     PrimaryExpression returns StringLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns StringLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns StringLiteralExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns StringLiteralExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns StringLiteralExpression
	 *     BaseExpression returns StringLiteralExpression
	 *     LiteralExpression returns StringLiteralExpression
	 *     StringLiteralExpression returns StringLiteralExpression
	 *     ParenthesizedExpression returns StringLiteralExpression
	 *     SequenceElement returns StringLiteralExpression
	 *     Index returns StringLiteralExpression
	 *     UnaryExpression returns StringLiteralExpression
	 *     PostfixOrCastExpression returns StringLiteralExpression
	 *     CastCompletion returns StringLiteralExpression
	 *     MultiplicativeExpression returns StringLiteralExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns StringLiteralExpression
	 *     AdditiveExpression returns StringLiteralExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns StringLiteralExpression
	 *     ShiftExpression returns StringLiteralExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns StringLiteralExpression
	 *     RelationalExpression returns StringLiteralExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns StringLiteralExpression
	 *     ClassificationExpression returns StringLiteralExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns StringLiteralExpression
	 *     EqualityExpression returns StringLiteralExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns StringLiteralExpression
	 *     AndExpression returns StringLiteralExpression
	 *     AndExpression.LogicalExpression_1_0 returns StringLiteralExpression
	 *     ExclusiveOrExpression returns StringLiteralExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns StringLiteralExpression
	 *     InclusiveOrExpression returns StringLiteralExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns StringLiteralExpression
	 *     ConditionalAndExpression returns StringLiteralExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns StringLiteralExpression
	 *     ConditionalOrExpression returns StringLiteralExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns StringLiteralExpression
	 *     ConditionalExpression returns StringLiteralExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns StringLiteralExpression
	 *     InitializationExpression returns StringLiteralExpression
	 *     SwitchCase returns StringLiteralExpression
	 *
	 * Constraint:
	 *     image=STRING
	 */
	protected void sequence_StringLiteralExpression(ISerializationContext context, StringLiteralExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getStringLiteralExpression_Image()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getStringLiteralExpression_Image()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getStringLiteralExpressionAccess().getImageSTRINGTerminalRuleCall_0(), semanticObject.getImage());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     StructuredMember returns Member
	 *
	 * Constraint:
	 *     (documentation+=DOCUMENTATION_COMMENT? annotation+=StereotypeAnnotation* visibility='public'? definition=PropertyDefinition)
	 */
	protected void sequence_StructuredMember(ISerializationContext context, Member semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns SuperInvocationExpression
	 *     Expression returns SuperInvocationExpression
	 *     PrimaryExpression returns SuperInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns SuperInvocationExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns SuperInvocationExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns SuperInvocationExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns SuperInvocationExpression
	 *     BaseExpression returns SuperInvocationExpression
	 *     ParenthesizedExpression returns SuperInvocationExpression
	 *     SuperInvocationExpression returns SuperInvocationExpression
	 *     SequenceElement returns SuperInvocationExpression
	 *     Index returns SuperInvocationExpression
	 *     UnaryExpression returns SuperInvocationExpression
	 *     PostfixOrCastExpression returns SuperInvocationExpression
	 *     CastCompletion returns SuperInvocationExpression
	 *     MultiplicativeExpression returns SuperInvocationExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns SuperInvocationExpression
	 *     AdditiveExpression returns SuperInvocationExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns SuperInvocationExpression
	 *     ShiftExpression returns SuperInvocationExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns SuperInvocationExpression
	 *     RelationalExpression returns SuperInvocationExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns SuperInvocationExpression
	 *     ClassificationExpression returns SuperInvocationExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns SuperInvocationExpression
	 *     EqualityExpression returns SuperInvocationExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns SuperInvocationExpression
	 *     AndExpression returns SuperInvocationExpression
	 *     AndExpression.LogicalExpression_1_0 returns SuperInvocationExpression
	 *     ExclusiveOrExpression returns SuperInvocationExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns SuperInvocationExpression
	 *     InclusiveOrExpression returns SuperInvocationExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns SuperInvocationExpression
	 *     ConditionalAndExpression returns SuperInvocationExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns SuperInvocationExpression
	 *     ConditionalOrExpression returns SuperInvocationExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns SuperInvocationExpression
	 *     ConditionalExpression returns SuperInvocationExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns SuperInvocationExpression
	 *     InitializationExpression returns SuperInvocationExpression
	 *     SwitchCase returns SuperInvocationExpression
	 *
	 * Constraint:
	 *     (target=QualifiedName? tuple=Tuple)
	 */
	protected void sequence_SuperInvocationExpression(ISerializationContext context, SuperInvocationExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     SwitchClause returns SwitchClause
	 *
	 * Constraint:
	 *     (case+=SwitchCase case+=SwitchCase* block=NonEmptyStatementSequence)
	 */
	protected void sequence_SwitchClause(ISerializationContext context, SwitchClause semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns SwitchStatement
	 *     SwitchStatement returns SwitchStatement
	 *
	 * Constraint:
	 *     (expression=Expression nonDefaultClause+=SwitchClause* defaultClause=SwitchDefaultClause?)
	 */
	protected void sequence_SwitchStatement(ISerializationContext context, SwitchStatement semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TaggedValueList returns TaggedValueList
	 *
	 * Constraint:
	 *     (taggedValue+=TaggedValue taggedValue+=TaggedValue*)
	 */
	protected void sequence_TaggedValueList(ISerializationContext context, TaggedValueList semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TaggedValue returns TaggedValue
	 *
	 * Constraint:
	 *     (name=Name (value=BOOLEAN_VALUE | (operator=NumericUnaryOperator? value=NATURAL_VALUE) | value='*' | value=STRING))
	 */
	protected void sequence_TaggedValue(ISerializationContext context, TaggedValue semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TemplateParameterConstraint returns QualifiedNameList
	 *
	 * Constraint:
	 *     name+=QualifiedName
	 */
	protected void sequence_TemplateParameterConstraint(ISerializationContext context, QualifiedNameList semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TemplateParameterSubstitution returns TemplateParameterSubstitution
	 *
	 * Constraint:
	 *     (parameterName=Name argumentName=QualifiedName)
	 */
	protected void sequence_TemplateParameterSubstitution(ISerializationContext context, TemplateParameterSubstitution semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getTemplateParameterSubstitution_ParameterName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getTemplateParameterSubstitution_ParameterName()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getTemplateParameterSubstitution_ArgumentName()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getTemplateParameterSubstitution_ArgumentName()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getTemplateParameterSubstitutionAccess().getParameterNameNameParserRuleCall_0_0(), semanticObject.getParameterName());
		feeder.accept(grammarAccess.getTemplateParameterSubstitutionAccess().getArgumentNameQualifiedNameParserRuleCall_2_0(), semanticObject.getArgumentName());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     ThisExpression returns FeatureInvocationExpression
	 *
	 * Constraint:
	 *     tuple=Tuple
	 */
	protected void sequence_ThisExpression(ISerializationContext context, FeatureInvocationExpression semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getInvocationExpression_Tuple()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getThisExpressionAccess().getTupleTupleParserRuleCall_0_2_0(), semanticObject.getTuple());
		feeder.finish();
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns ThisExpression
	 *     Expression returns ThisExpression
	 *     PrimaryExpression returns ThisExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns ThisExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns ThisExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns ThisExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns ThisExpression
	 *     BaseExpression returns ThisExpression
	 *     ThisExpression returns ThisExpression
	 *     ParenthesizedExpression returns ThisExpression
	 *     SequenceElement returns ThisExpression
	 *     Index returns ThisExpression
	 *     UnaryExpression returns ThisExpression
	 *     PostfixOrCastExpression returns ThisExpression
	 *     CastCompletion returns ThisExpression
	 *     MultiplicativeExpression returns ThisExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns ThisExpression
	 *     AdditiveExpression returns ThisExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns ThisExpression
	 *     ShiftExpression returns ThisExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns ThisExpression
	 *     RelationalExpression returns ThisExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns ThisExpression
	 *     ClassificationExpression returns ThisExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns ThisExpression
	 *     EqualityExpression returns ThisExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns ThisExpression
	 *     AndExpression returns ThisExpression
	 *     AndExpression.LogicalExpression_1_0 returns ThisExpression
	 *     ExclusiveOrExpression returns ThisExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns ThisExpression
	 *     InclusiveOrExpression returns ThisExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns ThisExpression
	 *     ConditionalAndExpression returns ThisExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns ThisExpression
	 *     ConditionalOrExpression returns ThisExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns ThisExpression
	 *     ConditionalExpression returns ThisExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns ThisExpression
	 *     InitializationExpression returns ThisExpression
	 *     SwitchCase returns ThisExpression
	 *
	 * Constraint:
	 *     {ThisExpression}
	 */
	protected void sequence_ThisExpression(ISerializationContext context, ThisExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     TypePart returns TypedElementDefinition
	 *
	 * Constraint:
	 *     (
	 *         (isAny?='any' | typeName=QualifiedName) 
	 *         (isMultiplicity?=']' | (lowerBound=NATURAL_VALUE? upperBound=UnlimitedNaturalLiteral))? 
	 *         ((isOrdered?='ordered' isNonunique?='nonunique'?) | (isNonunique?='nonunique' isOrdered?='ordered'?) | isSequence?='sequence')?
	 *     )
	 */
	protected void sequence_TypePart(ISerializationContext context, TypedElementDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     AttributeInitializer returns UnboundedLiteralExpression
	 *     Expression returns UnboundedLiteralExpression
	 *     PrimaryExpression returns UnboundedLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_0_0 returns UnboundedLiteralExpression
	 *     PrimaryExpression.FeatureReference_1_1_0 returns UnboundedLiteralExpression
	 *     PrimaryExpression.ExtentOrExpression_1_2_0 returns UnboundedLiteralExpression
	 *     PrimaryExpression.SequenceAccessExpression_1_3_0 returns UnboundedLiteralExpression
	 *     BaseExpression returns UnboundedLiteralExpression
	 *     LiteralExpression returns UnboundedLiteralExpression
	 *     UnboundedLiteralExpression returns UnboundedLiteralExpression
	 *     ParenthesizedExpression returns UnboundedLiteralExpression
	 *     SequenceElement returns UnboundedLiteralExpression
	 *     Index returns UnboundedLiteralExpression
	 *     UnaryExpression returns UnboundedLiteralExpression
	 *     PostfixOrCastExpression returns UnboundedLiteralExpression
	 *     CastCompletion returns UnboundedLiteralExpression
	 *     MultiplicativeExpression returns UnboundedLiteralExpression
	 *     MultiplicativeExpression.ArithmeticExpression_1_0 returns UnboundedLiteralExpression
	 *     AdditiveExpression returns UnboundedLiteralExpression
	 *     AdditiveExpression.ArithmeticExpression_1_0 returns UnboundedLiteralExpression
	 *     ShiftExpression returns UnboundedLiteralExpression
	 *     ShiftExpression.ShiftExpression_1_0 returns UnboundedLiteralExpression
	 *     RelationalExpression returns UnboundedLiteralExpression
	 *     RelationalExpression.RelationalExpression_1_0 returns UnboundedLiteralExpression
	 *     ClassificationExpression returns UnboundedLiteralExpression
	 *     ClassificationExpression.ClassificationExpression_1_0 returns UnboundedLiteralExpression
	 *     EqualityExpression returns UnboundedLiteralExpression
	 *     EqualityExpression.EqualityExpression_1_0 returns UnboundedLiteralExpression
	 *     AndExpression returns UnboundedLiteralExpression
	 *     AndExpression.LogicalExpression_1_0 returns UnboundedLiteralExpression
	 *     ExclusiveOrExpression returns UnboundedLiteralExpression
	 *     ExclusiveOrExpression.LogicalExpression_1_0 returns UnboundedLiteralExpression
	 *     InclusiveOrExpression returns UnboundedLiteralExpression
	 *     InclusiveOrExpression.LogicalExpression_1_0 returns UnboundedLiteralExpression
	 *     ConditionalAndExpression returns UnboundedLiteralExpression
	 *     ConditionalAndExpression.ConditionalLogicalExpression_1_0 returns UnboundedLiteralExpression
	 *     ConditionalOrExpression returns UnboundedLiteralExpression
	 *     ConditionalOrExpression.ConditionalLogicalExpression_1_0 returns UnboundedLiteralExpression
	 *     ConditionalExpression returns UnboundedLiteralExpression
	 *     ConditionalExpression.ConditionalTestExpression_1_0 returns UnboundedLiteralExpression
	 *     InitializationExpression returns UnboundedLiteralExpression
	 *     SwitchCase returns UnboundedLiteralExpression
	 *
	 * Constraint:
	 *     {UnboundedLiteralExpression}
	 */
	protected void sequence_UnboundedLiteralExpression(ISerializationContext context, UnboundedLiteralExpression semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     UnitDefinition returns UnitDefinition
	 *
	 * Constraint:
	 *     (
	 *         namespaceName=NamespaceDeclaration? 
	 *         import+=ImportDeclaration* 
	 *         documentation+=DOCUMENTATION_COMMENT? 
	 *         annotation+=StereotypeAnnotation* 
	 *         definition=NamespaceDefinition
	 *     )
	 */
	protected void sequence_UnitDefinition(ISerializationContext context, UnitDefinition semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     UnqualifiedName returns QualifiedName
	 *
	 * Constraint:
	 *     nameBinding+=NameBinding
	 */
	protected void sequence_UnqualifiedName(ISerializationContext context, QualifiedName semanticObject) {
		genericSequencer.createSequence(context, semanticObject);
	}
	
	
	/**
	 * Contexts:
	 *     Statement returns WhileStatement
	 *     WhileStatement returns WhileStatement
	 *
	 * Constraint:
	 *     (condition=Expression body=Block)
	 */
	protected void sequence_WhileStatement(ISerializationContext context, WhileStatement semanticObject) {
		if (errorAcceptor != null) {
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getWhileStatement_Condition()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getWhileStatement_Condition()));
			if (transientValues.isValueTransient(semanticObject, AlfPackage.eINSTANCE.getWhileStatement_Body()) == ValueTransient.YES)
				errorAcceptor.accept(diagnosticProvider.createFeatureValueMissing(semanticObject, AlfPackage.eINSTANCE.getWhileStatement_Body()));
		}
		SequenceFeeder feeder = createSequencerFeeder(context, semanticObject);
		feeder.accept(grammarAccess.getWhileStatementAccess().getConditionExpressionParserRuleCall_2_0(), semanticObject.getCondition());
		feeder.accept(grammarAccess.getWhileStatementAccess().getBodyBlockParserRuleCall_4_0(), semanticObject.getBody());
		feeder.finish();
	}
	
	
}

Back to the top