File: et_eiffel_parser_skeleton.e

package info (click to toggle)
gobo 2.0-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 17,764 kB
  • ctags: 11,254
  • sloc: lex: 3,980; yacc: 3,875; makefile: 716; sh: 402; ansic: 40
file content (1569 lines) | stat: -rw-r--r-- 43,005 bytes parent folder | download
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
indexing

	description:

		"Eiffel parser skeletons"

	author:     "Eric Bezault <ericb@gobosoft.com>"
	copyright:  "Copyright (c) 1999-2001, Eric Bezault and others"
	license:    "Eiffel Forum Freeware License v1 (see forum.txt)"
	date:       "$Date: 2001/03/18 13:01:49 $"
	revision:   "$Revision: 1.7 $"

deferred class ET_EIFFEL_PARSER_SKELETON

inherit

	YY_PARSER_SKELETON [ANY]
		rename
			make as make_parser_skeleton,
			parse as yyparse
		redefine
			report_error
		end

	ET_EIFFEL_SCANNER_SKELETON
		rename
			make as make_eiffel_scanner
		end

feature {NONE} -- Initialization

	make (a_universe: ET_UNIVERSE; an_error_handler: like error_handler) is
			-- Create a new Eiffel parser.
		require
			a_universe_not_void: a_universe /= Void
			an_error_handler_not_void: an_error_handler /= Void
		local
			a_factory: ET_AST_FACTORY
		do
			!! a_factory.make
			make_with_factory (a_universe, a_factory, an_error_handler)
		ensure
			universe_set: universe = a_universe
			error_handler_set: error_handler = an_error_handler
		end

	make_with_factory (a_universe: ET_UNIVERSE; a_factory: like ast_factory;
		an_error_handler: like error_handler) is
			-- Create a new Eiffel parser.
		require
			a_universe_not_void: a_universe /= Void
			a_factory_not_void: a_factory /= Void
			an_error_handler_not_void: an_error_handler /= Void
		do
			universe := a_universe
			ast_factory := a_factory
			make_eiffel_scanner ("unknown file", an_error_handler)
			make_parser_skeleton
		ensure
			universe_set: universe = a_universe
			ast_factory_set: ast_factory = a_factory
			error_handler_set: error_handler = an_error_handler
		end

feature -- Access

	universe: ET_UNIVERSE
			-- Eiffel class universe

	ast_factory: ET_AST_FACTORY
			-- Abstract Syntax Tree factory

	last_clients: ET_CLIENTS
			-- Last clients read

feature -- Parsing

	parse (a_file: like INPUT_STREAM_TYPE; a_filename: STRING; a_cluster: ET_CLUSTER) is
			-- Parse Eiffel file `a_file'.
		require
			a_file_not_void: a_file /= Void
			a_file_open_read: INPUT_STREAM_.is_open_read (a_file)
			a_filename_not_void: a_filename /= Void
			a_cluster_not_void: a_cluster /= Void
		do
			reset
			feature_list_count := 0
			rename_list_count := 0
			filename := a_filename
			input_buffer := Eiffel_buffer
			Eiffel_buffer.set_file (a_file)
			yy_load_input_buffer
			yyparse
		end

feature -- Basic operations

	register_feature (a_feature: ET_FEATURE) is
			-- Register `a_feature' in `last_class'.
		require
			a_feature_not_void: a_feature /= Void
			last_class_not_void: last_class /= Void
		do
			last_class.put_feature (a_feature)
		end

	register_frozen_feature (a_feature: ET_FEATURE) is
			-- Register `a_feature' in `last_class'.
		require
			a_feature_not_void: a_feature /= Void
			last_class_not_void: last_class /= Void
		do
			a_feature.set_frozen
			last_class.put_feature (a_feature)
		ensure
			frozen_feature: a_feature.is_frozen
		end

	set_formal_generic_parameters (a_generics: ET_FORMAL_GENERIC_PARAMETERS) is
			-- Set formal generic parameters of `last_class'.
		require
			a_generics_not_void: a_generics /= Void
			last_class_not_void: last_class /= Void
		do
			last_class.set_generic_parameters (a_generics)
			a_generics.resolve_named_types (last_class, ast_factory)
		end

feature -- AST factory

	new_actual_arguments (an_expression: ET_EXPRESSION): ET_ACTUAL_ARGUMENTS is
			-- New actual argument list
		require
			an_expression_not_void: an_expression /= Void
		do
			Result := ast_factory.new_actual_arguments (an_expression)
		ensure
			actual_arguments_not_void: Result /= Void
		end

	new_actual_generics (a_type: ET_TYPE): ET_ACTUAL_GENERIC_PARAMETERS is
			-- New actual generic parameter list with initially
			-- one actual generic parameter `a_type'
		require
			a_type_not_void: a_type /= Void
		do
			Result := ast_factory.new_actual_generics (a_type)
		ensure
			actual_generics_not_void: Result /= Void
		end

	new_any_clients: ET_CLIENTS is
			-- Client list with only one client: ANY
		do
			Result := ast_factory.new_any_clients
			last_clients := Result
		ensure
			clients_not_void: Result /= Void
		end

	new_assertions (an_assertion: ET_ASSERTION): ET_ASSERTIONS is
			-- New assertion list with initially
			-- one assertion `an_assertion'
		require
			an_assertion_not_void: an_assertion /= Void
		do
			Result := ast_factory.new_assertions (an_assertion)
		ensure
			assertions_not_void: Result /= Void
		end

	new_assignment (a_target: ET_WRITABLE; a_source: ET_EXPRESSION): ET_ASSIGNMENT is
			-- New assignment instruction
		require
			a_target_not_void: a_target /= Void
			a_source_not_void: a_source /= Void
		do
			Result := ast_factory.new_assignment (a_target, a_source)
		ensure
			assignment_not_void: Result /= Void
		end

	new_assignment_attempt (a_target: ET_WRITABLE; a_source: ET_EXPRESSION): ET_ASSIGNMENT_ATTEMPT is
			-- New assignment-attempt instruction
		require
			a_target_not_void: a_target /= Void
			a_source_not_void: a_source /= Void
		do
			Result := ast_factory.new_assignment_attempt (a_target, a_source)
		ensure
			assignment_attempt_not_void: Result /= Void
		end

	new_attribute (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS; a_type: ET_TYPE): ET_ATTRIBUTE is
			-- New attribute declaration
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_attribute (a_name, a_type, last_clients, last_class, an_id)
		ensure
			attribute_not_void: Result /= Void
		end

	new_bit_identifier (an_id: ET_IDENTIFIER; p: ET_POSITION): ET_BIT_IDENTIFIER is
			-- New 'BIT Identifier' type
		require
			an_id_not_void: an_id /= Void
			p_not_void: p /= Void
		do
			Result := ast_factory.new_bit_identifier (an_id, p)
		ensure
			type_not_void: Result /= Void
		end

	new_bit_type (an_int: ET_INTEGER_CONSTANT; p: ET_POSITION): ET_BIT_TYPE is
			-- New 'BIT N' type
		require
			an_int_not_void: an_int /= Void
			p_not_void: p /= Void
		do
			Result := ast_factory.new_bit_type (an_int, p)
		ensure
			type_not_void: Result /= Void
		end

	new_call_expression (a_target: ET_EXPRESSION; a_name: ET_IDENTIFIER; args: ET_ACTUAL_ARGUMENTS): ET_CALL_EXPRESSION is
			-- New call expression
		require
			a_name_not_void: a_name /= Void
		do
			Result := ast_factory.new_call_expression (a_target, a_name, args)
		ensure
			call_expression_not_void: Result /= Void
		end

	new_call_instruction (a_target: ET_EXPRESSION; a_name: ET_IDENTIFIER; args: ET_ACTUAL_ARGUMENTS): ET_CALL_INSTRUCTION is
			-- New call instruction
		require
			a_name_not_void: a_name /= Void
		do
			Result := ast_factory.new_call_instruction (a_target, a_name, args)
		ensure
			call_instruction_not_void: Result /= Void
		end

	new_check_instruction: ET_CHECK_INSTRUCTION is
			-- New check instruction
		do
			Result := ast_factory.new_check_instruction
		ensure
			check_instruction_not_void: Result /= Void
		end

	new_class (a_name: ET_IDENTIFIER): ET_CLASS is
			-- New Eiffel class
		require
			a_name_not_void: a_name /= Void
		do
			Result := universe.eiffel_class (a_name)
			Result.set_filename (filename)

			debug ("GELINT")
				std.error.put_string ("Parse class `")
				std.error.put_string (a_name.name)
				std.error.put_string ("'%N")
			end
		ensure
			class_not_void: Result /= Void
		end

	new_client (a_name: ET_IDENTIFIER): ET_CLIENT is
			-- New client
		require
			a_name_not_void: a_name /= Void
		do
			Result := ast_factory.new_client (a_name)
		ensure
			client_not_void: Result /= Void
		end

	new_clients (a_client: ET_CLIENT): ET_CLIENTS is
			-- New client clause
		require
			a_client_not_void: a_client /= Void
		do
			Result := ast_factory.new_clients (a_client)
			last_clients := Result
		ensure
			clients_not_void: Result /= Void
		end

	new_comment_assertion (a_tag: ET_IDENTIFIER): ET_COMMENT_ASSERTION is
			-- New comment assertion
		do
			Result := ast_factory.new_comment_assertion (a_tag)
		ensure
			assertion_not_void: Result /= Void
		end

	new_compound (an_instruction: ET_INSTRUCTION): ET_COMPOUND is
			-- New instruction compound
		require
			an_instruction_not_void: an_instruction /= Void
		do
			Result := ast_factory.new_compound (an_instruction)
		ensure
			compound_not_void: Result /= Void
		end

	new_constant_attribute (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		a_type: ET_TYPE; a_constant: ANY): ET_CONSTANT_ATTRIBUTE is
			-- New constant attribute declaration
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			a_constant_not_void: a_constant /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_constant_attribute (a_name, a_type, a_constant, last_clients, last_class, an_id)
		ensure
			constant_attribute_not_void: Result /= Void
		end

	new_constraint_named_type (a_name: ET_IDENTIFIER;
		a_generics: like new_actual_generics): ET_NAMED_TYPE is
			-- New Eiffel class type or formal
			-- generic paramater appearing in a
			-- generic constraint
		require
			a_name_not_void: a_name /= Void
		do
			if a_generics /= Void then
				Result := ast_factory.new_generic_named_type (a_name, a_generics)
			else
				Result := ast_factory.new_named_type (a_name)
			end
		ensure
			named_type_not_void: Result /= Void
		end

	new_creation_instruction (a_type: ET_TYPE; a_target: ET_WRITABLE; a_call: ANY): ET_CREATION_INSTRUCTION is
			-- New creation instruction
		do
			Result := ast_factory.new_creation_instruction (a_type, a_target, a_call)
		ensure
			creation_instruction_not_void: Result /= Void
		end

	new_current (a_position: ET_POSITION): ET_CURRENT is
			-- New current entity
		require
			a_position_not_void: a_position /= Void
		do
			Result := ast_factory.new_current (a_position)
		ensure
			current_not_void: Result /= Void
		end

	new_current_address: ET_CURRENT_ADDRESS is
			-- New address of Current
		do
			Result := ast_factory.new_current_address
		ensure
			current_address_not_void: Result /= Void
		end

	new_debug_instruction: ET_DEBUG_INSTRUCTION is
			-- New debug instruction
		do
			Result := ast_factory.new_debug_instruction
		ensure
			debug_instruction_not_void: Result /= Void
		end

	new_deferred_class (a_name: ET_IDENTIFIER): ET_CLASS is
			-- New deferred class
		require
			a_name_not_void: a_name /= Void
		do
			Result := new_class (a_name)
			Result.set_deferred
		ensure
			class_not_void: Result /= Void
			is_deferred: Result.is_deferred
		end

	new_deferred_function (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		a_type: ET_TYPE; an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_postconditions: ET_POSTCONDITIONS): ET_DEFERRED_FUNCTION is
			-- New deferred function
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_deferred_function (a_name, args,
				a_type, an_obsolete, a_preconditions, a_postconditions,
				last_clients, last_class, an_id)
		ensure
			deferred_function_not_void: Result /= Void
		end

	new_deferred_procedure (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_postconditions: ET_POSTCONDITIONS): ET_DEFERRED_PROCEDURE is
			-- New deferred procedure
		require
			a_name_not_void: a_name /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_deferred_procedure (a_name, args,
				an_obsolete, a_preconditions, a_postconditions,
				last_clients, last_class, an_id)
		ensure
			deferred_procedure_not_void: Result /= Void
		end

	new_do_function (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS; a_type: ET_TYPE;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_locals: ET_LOCAL_VARIABLES; a_compound: ET_COMPOUND;
		a_postconditions: ET_POSTCONDITIONS; a_rescue: ET_COMPOUND): ET_DO_FUNCTION is
			-- New do function
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_do_function (a_name, args,
				a_type, an_obsolete, a_preconditions, a_locals,
				a_compound, a_postconditions, a_rescue,
				last_clients, last_class, an_id)
		ensure
			do_function_not_void: Result /= Void
		end

	new_do_procedure (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_locals: ET_LOCAL_VARIABLES; a_compound: ET_COMPOUND;
		a_postconditions: ET_POSTCONDITIONS; a_rescue: ET_COMPOUND): ET_DO_PROCEDURE is
			-- New do procedure
		require
			a_name_not_void: a_name /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_do_procedure (a_name, args,
				an_obsolete, a_preconditions, a_locals, a_compound,
				a_postconditions, a_rescue, last_clients, last_class, an_id)
		ensure
			do_procedure_not_void: Result /= Void
		end

	new_equal_expression (l, r: ET_EXPRESSION): ET_EQUAL_EXPRESSION is
			-- New equality expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
		do
			Result := ast_factory.new_equal_expression (l, r)
		ensure
			equal_not_void: Result /= Void
		end

	new_expanded_class (a_name: ET_IDENTIFIER): ET_CLASS is
			-- New expanded class
		require
			a_name_not_void: a_name /= Void
		do
			Result := new_class (a_name)
			Result.set_expanded
		ensure
			class_not_void: Result /= Void
			is_expanded: Result.is_expanded
		end

	new_export_list (nb: INTEGER): ARRAY [ET_EXPORT] is
			-- New export list
		require
			nb_positive: nb > 0
		do
			Result := ast_factory.new_export_list (nb)
		ensure
			export_list_not_void: Result /= Void
		end

	new_expression_address (e: ET_EXPRESSION): ET_EXPRESSION_ADDRESS is
			-- New expression address
		require
			e_not_void: e /= Void
		do
			Result := ast_factory.new_expression_address (e)
		ensure
			expression_address_not_void: Result /= Void
		end

	new_expression_assertion (a_tag: ET_IDENTIFIER; an_expression: ET_EXPRESSION): ET_EXPRESSION_ASSERTION is
			-- New expression assertion
		require
			an_expression_not_void: an_expression /= Void
		do
			Result := ast_factory.new_expression_assertion (a_tag, an_expression)
		ensure
			assertion_not_void: Result /= Void
		end

	new_external_function (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		a_type: ET_TYPE; an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_language: ET_MANIFEST_STRING; an_alias: ET_MANIFEST_STRING;
		a_postconditions: ET_POSTCONDITIONS): ET_EXTERNAL_FUNCTION is
			-- New external function
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			a_language_not_void: a_language /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_external_function (a_name, args,
				a_type, an_obsolete, a_preconditions, a_language, an_alias,
				a_postconditions, last_clients, last_class, an_id)
		ensure
			external_function_not_void: Result /= Void
		end

	new_external_procedure (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_language: ET_MANIFEST_STRING; an_alias: ET_MANIFEST_STRING;
		a_postconditions: ET_POSTCONDITIONS): ET_EXTERNAL_PROCEDURE is
			-- New external procedure
		require
			a_name_not_void: a_name /= Void
			a_language_not_void: a_language /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_external_procedure (a_name, args,
				an_obsolete, a_preconditions, a_language, an_alias,
				a_postconditions, last_clients, last_class, an_id)
		ensure
			external_procedure_not_void: Result /= Void
		end

	new_feature_address: ET_FEATURE_ADDRESS is
			-- New feature address
		do
			Result := ast_factory.new_feature_address
		ensure
			feature_address_not_void: Result /= Void
		end

	new_feature_list (nb: INTEGER): ARRAY [ET_FEATURE_NAME] is
			-- New feature list
		require
			nb_positive: nb > 0
		do
			Result := ast_factory.new_feature_list (nb)
		ensure
			feature_list_not_void: Result /= Void
		end

	new_formal_arguments (a_name: ET_IDENTIFIER; a_type: ET_TYPE): ET_FORMAL_ARGUMENTS is
			-- New formal argument list with initially
			-- one argument `a_name' of type `a_type'
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
		do
			Result := ast_factory.new_formal_arguments (a_name, a_type)
		ensure
			formal_arguments_not_void: Result /= Void
		end

	new_formal_generic (a_name: ET_IDENTIFIER; a_constraint: ET_TYPE): ET_FORMAL_GENERIC_PARAMETER is
			-- New formal generic parameter
		require
			a_name_not_void: a_name /= Void
		do
			Result := ast_factory.new_formal_generic (a_name, a_constraint)
		ensure
			formal_generic_not_void: Result /= Void
		end

	new_formal_generics (a_parameter: ET_FORMAL_GENERIC_PARAMETER): ET_FORMAL_GENERIC_PARAMETERS is
			-- New formal generic parameter list with initially
			-- one formal generic parameter `a_parameter'
		require
			a_parameter_not_void: a_parameter /= Void
		do
			Result := ast_factory.new_formal_generics (a_parameter)
		ensure
			formal_generics_not_void: Result /= Void
		end

	new_if_instruction (a_condition: ET_EXPRESSION; a_compound: ET_COMPOUND): ET_IF_INSTRUCTION is
			-- New if instruction
		require
			a_condition_not_void: a_condition /= Void
		do
			Result := ast_factory.new_if_instruction (a_condition, a_compound)
		ensure
			if_instruction_not_void: Result /= Void
		end

	new_infix_and (p: ET_POSITION): ET_INFIX_AND is
			-- New infix "and" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_and (p)
		ensure
			infix_and_not_void: Result /= Void
		end

	new_infix_and_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New and expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_AND
		do
			a_name := new_infix_and (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			and_expression_not_void: Result /= Void
		end

	new_infix_and_then (p: ET_POSITION): ET_INFIX_AND_THEN is
			-- New infix "and then" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_and_then (p)
		ensure
			infix_and_then_not_void: Result /= Void
		end

	new_infix_and_then_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New and-then expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_AND_THEN
		do
			a_name := new_infix_and_then (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			and_then_expression_not_void: Result /= Void
		end

	new_infix_div (p: ET_POSITION): ET_INFIX_DIV is
			-- New infix "//" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_div (p)
		ensure
			infix_div_not_void: Result /= Void
		end

	new_infix_div_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New integer-division expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_DIV
		do
			a_name := new_infix_div (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			div_expression_not_void: Result /= Void
		end

	new_infix_divide (p: ET_POSITION): ET_INFIX_DIVIDE is
			-- New infix "/" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_divide (p)
		ensure
			infix_division_not_void: Result /= Void
		end

	new_infix_divide_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New division expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_DIVIDE
		do
			a_name := new_infix_divide (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			division_expression_not_void: Result /= Void
		end

	new_infix_freeop (a_string: ET_MANIFEST_STRING; p: ET_POSITION): ET_INFIX_FREEOP is
			-- New infix free-operator feature name
		require
			a_string_not_void: a_string /= Void
			p_not_void: p /= Void
		do
			a_string.compute (error_handler)
			Result := ast_factory.new_infix_freeop (a_string.value, p)
		ensure
			infix_freeop_not_void: Result /= Void
		end

	new_infix_freeop_expression (l, r: ET_EXPRESSION; a_token: ET_TOKEN): ET_INFIX_EXPRESSION is
			-- New binary free-operator expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			a_token_not_void: a_token /= Void
		local
			a_name: ET_INFIX_FREEOP
		do
			a_name := ast_factory.new_infix_freeop (a_token.text, a_token.position)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			freeop_expression_not_void: Result /= Void
		end

	new_infix_ge (p: ET_POSITION): ET_INFIX_GE is
			-- New infix ">=" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_ge (p)
		ensure
			infix_ge_not_void: Result /= Void
		end

	new_infix_ge_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New greater-than-or-equal expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_GE
		do
			a_name := new_infix_ge (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			ge_expression_not_void: Result /= Void
		end

	new_infix_gt (p: ET_POSITION): ET_INFIX_GT is
			-- New infix ">" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_gt (p)
		ensure
			infix_gt_not_void: Result /= Void
		end

	new_infix_gt_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New greater-than expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_GT
		do
			a_name := new_infix_gt (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			gt_expression_not_void: Result /= Void
		end

	new_infix_implies (p: ET_POSITION): ET_INFIX_IMPLIES is
			-- New infix "implies" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_implies (p)
		ensure
			infix_implies_not_void: Result /= Void
		end

	new_infix_implies_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New implies expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_IMPLIES
		do
			a_name := new_infix_implies (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			implies_expression_not_void: Result /= Void
		end

	new_infix_le (p: ET_POSITION): ET_INFIX_LE is
			-- New infix "<=" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_le (p)
		ensure
			infix_le_not_void: Result /= Void
		end

	new_infix_le_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New less-than-or-equal expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_LE
		do
			a_name := new_infix_le (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			le_expression_not_void: Result /= Void
		end

	new_infix_lt (p: ET_POSITION): ET_INFIX_LT is
			-- New infix "<" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_lt (p)
		ensure
			infix_lt_not_void: Result /= Void
		end

	new_infix_lt_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New less-than expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_LT
		do
			a_name := new_infix_lt (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			lt_expression_not_void: Result /= Void
		end

	new_infix_minus (p: ET_POSITION): ET_INFIX_MINUS is
			-- New infix "-" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_minus (p)
		ensure
			infix_minus_not_void: Result /= Void
		end

	new_infix_minus_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New binary minus expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_MINUS
		do
			a_name := new_infix_minus (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			minus_expression_not_void: Result /= Void
		end

	new_infix_mod (p: ET_POSITION): ET_INFIX_MOD is
			-- New infix "\\" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_mod (p)
		ensure
			infix_mod_not_void: Result /= Void
		end

	new_infix_mod_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New modulus expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_MOD
		do
			a_name := new_infix_mod (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			mod_expression_not_void: Result /= Void
		end

	new_infix_or (p: ET_POSITION): ET_INFIX_OR is
			-- New infix "or" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_or (p)
		ensure
			infix_or_not_void: Result /= Void
		end

	new_infix_or_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New or expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_OR
		do
			a_name := new_infix_or (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			or_expression_not_void: Result /= Void
		end

	new_infix_or_else (p: ET_POSITION): ET_INFIX_OR_ELSE is
			-- New infix "or else" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_or_else (p)
		ensure
			infix_or_else_not_void: Result /= Void
		end

	new_infix_or_else_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New or-else expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_OR_ELSE
		do
			a_name := new_infix_or_else (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			or_else_expression_not_void: Result /= Void
		end

	new_infix_plus (p: ET_POSITION): ET_INFIX_PLUS is
			-- New infix "+" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_plus (p)
		ensure
			infix_plus_not_void: Result /= Void
		end

	new_infix_plus_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New binary plus expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_PLUS
		do
			a_name := new_infix_plus (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			plus_expression_not_void: Result /= Void
		end

	new_infix_power (p: ET_POSITION): ET_INFIX_POWER is
			-- New infix "^" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_power (p)
		ensure
			infix_power_not_void: Result /= Void
		end

	new_infix_power_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New power expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_POWER
		do
			a_name := new_infix_power (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			power_expression_not_void: Result /= Void
		end

	new_infix_times (p: ET_POSITION): ET_INFIX_TIMES is
			-- New infix "*" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_times (p)
		ensure
			infix_times_not_void: Result /= Void
		end

	new_infix_times_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New multiplication expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_TIMES
		do
			a_name := new_infix_times (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			times_expression_not_void: Result /= Void
		end

	new_infix_xor (p: ET_POSITION): ET_INFIX_XOR is
			-- New infix "xor" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_infix_xor (p)
		ensure
			infix_xor_not_void: Result /= Void
		end

	new_infix_xor_expression (l, r: ET_EXPRESSION; p: ET_POSITION): ET_INFIX_EXPRESSION is
			-- New xor expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
			p_not_void: p /= Void
		local
			a_name: ET_INFIX_XOR
		do
			a_name := new_infix_xor (p)
			Result := ast_factory.new_infix_expression (l, a_name, r)
		ensure
			xor_expression_not_void: Result /= Void
		end

	new_inspect_instruction: ET_INSPECT_INSTRUCTION is
			-- New inspect instruction
		do
			Result := ast_factory.new_inspect_instruction
		ensure
			inspect_instruction_not_void: Result /= Void
		end

	new_invalid_infix (a_string: ET_MANIFEST_STRING; p: ET_POSITION): ET_INFIX_FREEOP is
			-- New invalid infix feature name
		require
			a_string_not_void: a_string /= Void
			p_not_void: p /= Void
		do
-- ERROR
			Result := new_infix_freeop (a_string, p)
		ensure
			invalid_infix_not_void: Result /= Void
		end

	new_invalid_prefix (a_string: ET_MANIFEST_STRING; p: ET_POSITION): ET_PREFIX_FREEOP is
			-- New invalid prefix feature name
		require
			a_string_not_void: a_string /= Void
			p_not_void: p /= Void
		do
-- ERROR
			Result := new_prefix_freeop (a_string, p)
		ensure
			invalid_prefix_not_void: Result /= Void
		end

	new_like_current (p: ET_POSITION): ET_LIKE_CURRENT is
			-- New 'like Current' type
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_like_current (p)
		ensure
			type_not_void: Result /= Void
		end

	new_like_identifier (an_id: ET_IDENTIFIER; p: ET_POSITION): ET_LIKE_IDENTIFIER is
			-- New 'like Identifier' type
		require
			an_id_not_void: an_id /= Void
			p_not_void: p /= Void
		do
			Result := ast_factory.new_like_identifier (an_id, p)
		ensure
			type_not_void: Result /= Void
		end

	new_local_variables (a_name: ET_IDENTIFIER; a_type: ET_TYPE): ET_LOCAL_VARIABLES is
			-- New local variable list with initially
			-- one variable `a_name' of type `a_type'
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
		do
			Result := ast_factory.new_local_variables (a_name, a_type)
		ensure
			local_variables_not_void: Result /= Void
		end

	new_loop_instruction: ET_LOOP_INSTRUCTION is
			-- New loop instruction
		do
			Result := ast_factory.new_loop_instruction
		ensure
			loop_instruction_not_void: Result /= Void
		end

	new_manifest_array: ET_MANIFEST_ARRAY is
			-- New manifest array
		do
			Result := ast_factory.new_manifest_array
		ensure
			manifest_array_not_void: Result /= Void
		end

	new_named_type (a_name: ET_IDENTIFIER;
		a_generics: like new_actual_generics): ET_NAMED_TYPE is
			-- New Eiffel class type or formal
			-- generic paramater
		require
			a_name_not_void: a_name /= Void
			last_class_not_void: last_class /= Void
		local
			a_parameter: ET_FORMAL_GENERIC_PARAMETER
			a_class: ET_CLASS
		do
			a_parameter := last_class.generic_parameter (a_name)
			if a_parameter /= Void then
				if a_generics /= Void then
					-- Error
				end
				Result := ast_factory.new_formal_generic_type (a_name, a_parameter.index)
			else
				a_class := universe.eiffel_class (a_name)
				if a_generics /= Void then
					Result := ast_factory.new_generic_class_type (a_name, a_generics, a_class)
				else
					Result := ast_factory.new_class_type (a_name, a_class)
				end
			end
		ensure
			named_type_not_void: Result /= Void
		end

	new_none_clients: ET_CLIENTS is
			-- New client list with only one client: NONE
		do
			Result := ast_factory.new_none_clients
			last_clients := Result
		ensure
			clients_not_void: Result /= Void
		end

	new_not_equal_expression (l, r: ET_EXPRESSION): ET_NOT_EQUAL_EXPRESSION is
			-- New non-equality expression
		require
			l_not_void: l /= Void
			r_not_void: r /= Void
		do
			Result := ast_factory.new_not_equal_expression (l, r)
		ensure
			not_equal_not_void: Result /= Void
		end

	new_old_expression (e: ET_EXPRESSION): ET_OLD_EXPRESSION is
			-- New old expression
		require
			e_not_void: e /= Void
		do
			Result := ast_factory.new_old_expression (e)
		ensure
			old_expression_not_void: Result /= Void
		end

	new_once_function (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS; a_type: ET_TYPE;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_locals: ET_LOCAL_VARIABLES; a_compound: ET_COMPOUND;
		a_postconditions: ET_POSTCONDITIONS; a_rescue: ET_COMPOUND): ET_ONCE_FUNCTION is
			-- New once function
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_once_function (a_name, args,
				a_type, an_obsolete, a_preconditions, a_locals, a_compound,
				a_postconditions, a_rescue, last_clients, last_class, an_id)
		ensure
			once_function_not_void: Result /= Void
		end

	new_once_procedure (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		an_obsolete: ET_MANIFEST_STRING; a_preconditions: ET_PRECONDITIONS;
		a_locals: ET_LOCAL_VARIABLES; a_compound: ET_COMPOUND;
		a_postconditions: ET_POSTCONDITIONS; a_rescue: ET_COMPOUND): ET_ONCE_PROCEDURE is
			-- New once procedure
		require
			a_name_not_void: a_name /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_once_procedure (a_name, args,
				an_obsolete, a_preconditions, a_locals, a_compound,
				a_postconditions, a_rescue, last_clients, last_class, an_id)
		ensure
			once_procedure_not_void: Result /= Void
		end

	new_parent (a_name: ET_IDENTIFIER; a_generic_parameters: like new_actual_generics;
		a_renames: like new_rename_list; an_exports: like new_export_list;
		an_undefines: like new_feature_list; a_redefines: like new_feature_list;
		a_selects: like new_feature_list): ET_PARENT is
			-- New parent
		require
			a_name_not_void: a_name /= Void
		local
			a_type: ET_CLASS_TYPE
			a_class: ET_CLASS
		do
			if last_class.has_generic_parameter (a_name) then
				-- Error
			end
			a_class := universe.eiffel_class (a_name)
			if a_generic_parameters /= Void then
				!ET_GENERIC_CLASS_TYPE! a_type.make (a_name, a_generic_parameters, a_class)
			else
				!! a_type.make (a_name, a_class)
			end
			Result := ast_factory.new_parent (a_type, a_renames,
				an_exports, an_undefines, a_redefines, a_selects)
		ensure
			parent_not_void: Result /= Void
		end

	new_parents (a_parent: ET_PARENT): ET_PARENTS is
			-- New parent list with one parent `a_parent'
		require
			a_parent_not_void: a_parent /= Void
		do
			Result := ast_factory.new_parents (a_parent)
		ensure
			parents_not_void: Result /= Void
		end

	new_postconditions (an_assertion: ET_ASSERTION): ET_POSTCONDITIONS is
			-- New postcondition list with initially
			-- one assertion `an_assertion'
		require
			an_assertion_not_void: an_assertion /= Void
		do
			Result := ast_factory.new_postconditions (an_assertion)
		ensure
			postconditions_not_void: Result /= Void
		end

	new_preconditions (an_assertion: ET_ASSERTION): ET_PRECONDITIONS is
			-- New precondition list with initially
			-- one assertion `an_assertion'
		require
			an_assertion_not_void: an_assertion /= Void
		do
			Result := ast_factory.new_preconditions (an_assertion)
		ensure
			preconditions_not_void: Result /= Void
		end

	new_precursor_expression (a_parent: ANY; args: ANY): ET_PRECURSOR_EXPRESSION is
			-- New precursor expression
		do
			Result := ast_factory.new_precursor_expression (a_parent, args)
		ensure
			precursor_expression_not_void: Result /= Void
		end

	new_precursor_instruction (a_parent: ANY; args: ANY): ET_PRECURSOR_INSTRUCTION is
			-- New precursor instruction
		do
			Result := ast_factory.new_precursor_instruction (a_parent, args)
		ensure
			precursor_instruction_not_void: Result /= Void
		end

	new_prefix_freeop (a_string: ET_MANIFEST_STRING; p: ET_POSITION): ET_PREFIX_FREEOP is
			-- New prefix free-operator feature name
		require
			a_string_not_void: a_string /= Void
			p_not_void: p /= Void
		do
			a_string.compute (error_handler)
			Result := ast_factory.new_prefix_freeop (a_string.value, p)
		ensure
			prefix_freeop_not_void: Result /= Void
		end

	new_prefix_freeop_expression (a_token: ET_TOKEN; e: ET_EXPRESSION): ET_PREFIX_EXPRESSION is
			-- New unary free-operator expression
		require
			a_token_not_void: a_token /= Void
			e_not_void: e /= Void
		local
			a_name: ET_PREFIX_FREEOP
		do
			a_name := ast_factory.new_prefix_freeop (a_token.text, a_token.position)
			Result := ast_factory.new_prefix_expression (a_name, e)
		ensure
			freeop_expression_not_void: Result /= Void
		end

	new_prefix_minus (p: ET_POSITION): ET_PREFIX_MINUS is
			-- New prefix "-" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_prefix_minus (p)
		ensure
			prefix_minus_not_void: Result /= Void
		end

	new_prefix_minus_expression (e: ET_EXPRESSION; p: ET_POSITION): ET_PREFIX_EXPRESSION is
			-- New unary minus expression
		require
			e_not_void: e /= Void
			p_not_void: p /= Void
		local
			a_name: ET_PREFIX_MINUS
		do
			a_name := new_prefix_minus (p)
			Result := ast_factory.new_prefix_expression (a_name, e)
		ensure
			minus_expression_not_void: Result /= Void
		end

	new_prefix_not (p: ET_POSITION): ET_PREFIX_NOT is
			-- New prefix "not" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_prefix_not (p)
		ensure
			prefix_not_not_void: Result /= Void
		end

	new_prefix_not_expression (e: ET_EXPRESSION; p: ET_POSITION): ET_PREFIX_EXPRESSION is
			-- New not expression
		require
			e_not_void: e /= Void
			p_not_void: p /= Void
		local
			a_name: ET_PREFIX_NOT
		do
			a_name := new_prefix_not (p)
			Result := ast_factory.new_prefix_expression (a_name, e)
		ensure
			not_expression_not_void: Result /= Void
		end

	new_prefix_plus (p: ET_POSITION): ET_PREFIX_PLUS is
			-- New prefix "+" feature name
		require
			p_not_void: p /= Void
		do
			Result := ast_factory.new_prefix_plus (p)
		ensure
			prefix_plus_not_void: Result /= Void
		end

	new_prefix_plus_expression (e: ET_EXPRESSION; p: ET_POSITION): ET_PREFIX_EXPRESSION is
			-- New unary plus expression
		require
			e_not_void: e /= Void
			p_not_void: p /= Void
		local
			a_name: ET_PREFIX_PLUS
		do
			a_name := new_prefix_plus (p)
			Result := ast_factory.new_prefix_expression (a_name, e)
		ensure
			plus_expression_not_void: Result /= Void
		end

	new_rename_list (nb: INTEGER): ARRAY [ET_RENAME] is
			-- New rename list
		require
			nb_positive: nb > 0
		do
			Result := ast_factory.new_rename_list (nb)
		ensure
			rename_list_not_void: Result /= Void
		end

	new_rename (old_name, new_name: ET_FEATURE_NAME): ET_RENAME is
			-- New rename pair
		require
			old_name_not_void: old_name /= Void
			new_name_not_void: new_name /= Void
		do
			Result := ast_factory.new_rename (old_name, new_name)
		ensure
			renames_not_void: Result /= Void
		end

	new_result (a_position: ET_POSITION): ET_RESULT is
			-- New result entity
		require
			a_position_not_void: a_position /= Void
		do
			Result := ast_factory.new_result (a_position)
		ensure
			result_not_void: Result /= Void
		end

	new_result_address: ET_RESULT_ADDRESS is
			-- New address of Result
		do
			Result := ast_factory.new_result_address
		ensure
			result_address_not_void: Result /= Void
		end

	new_retry_instruction: ET_RETRY_INSTRUCTION is
			-- New retry instruction
		do
			Result := ast_factory.new_retry_instruction
		ensure
			retry_instruction_not_void: Result /= Void
		end

	new_separate_class (a_name: ET_IDENTIFIER): ET_CLASS is
			-- New separate class
		require
			a_name_not_void: a_name /= Void
		do
			Result := new_class (a_name)
			Result.set_separate
		ensure
			class_not_void: Result /= Void
			is_separate: Result.is_separate
		end

	new_strip_expression: ET_STRIP_EXPRESSION is
			-- New strip expression
		do
			Result := ast_factory.new_strip_expression
		ensure
			strip_expression_not_void: Result /= Void
		end

	new_synonym_feature (a_name: ET_FEATURE_NAME; a_feature: ET_FEATURE): ET_FEATURE is
			-- New synomym for feature `a_feature'
		require
			a_name_not_void: a_name /= Void
			a_feature_not_void: a_feature /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_synonym_feature (a_name, a_feature, an_id)
		ensure
			synonym_not_void: Result /= Void
		end

	new_unique_attribute (a_name: ET_FEATURE_NAME; args: ET_FORMAL_ARGUMENTS;
		a_type: ET_TYPE): ET_UNIQUE_ATTRIBUTE is
			-- New unique attribute declaration
		require
			a_name_not_void: a_name /= Void
			a_type_not_void: a_type /= Void
			last_clients_not_void: last_clients /= Void
			last_class_not_void: last_class /= Void
		local
			an_id: INTEGER
		do
			an_id := universe.next_feature_id
			Result := ast_factory.new_unique_attribute (a_name, a_type, last_clients, last_class, an_id)
		ensure
			unique_attribute_not_void: Result /= Void
		end

feature -- Error handling

	report_error (a_message: STRING) is
			-- Print error message.
		do
			error_handler.report_syntax_error (current_position)
			if last_class /= Void then
				last_class.set_syntax_error (True)
			end
		end

feature {NONE} -- Implementation

	feature_list_count: INTEGER
	rename_list_count: INTEGER

feature {NONE} -- Constants

	Eiffel_buffer: YY_FILE_BUFFER is
			-- Eiffel file input buffer
		once
			!! Result.make (std.input)
		ensure
			eiffel_buffer_not_void: Result /= Void
		end

invariant

	universe_not_void: universe /= Void
	ast_factory_not_void: ast_factory /= Void

end -- class ET_EIFFEL_PARSER_SKELETON