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

Dump of mapped file "<<Suppressed>>".

MEMORY DUMP OF MAPPED FILE
==========================

+-------------------------------------------------+------------------+
| 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | 0123456789ABCDEF |
+-------------------------------------------------+------------------+
| 50 52 30 38 3A 20 54 65 73 74 20 73 65 6D 61 6E | PR08: Test seman |
| 74 69 63 20 63 68 65 63 6B 69 6E 67 20 6F 66 20 | tic checking of  |
| 6D 61 63 72 6F 20 64 65 66 69 6E 69 74 69 6F 6E | macro definition |
| 73 2E 0A 0A 54 72 69 70 20 70 61 72 73 65 72 20 | s...Trip parser  |
| 74 6F 20 62 65 20 73 75 72 65 20 74 68 61 74 20 | to be sure that  |
| 77 65 20 77 6F 6E 27 74 20 67 65 74 20 61 6E 79 | we won't get any |
| 20 6F 75 74 70 75 74 20 66 69 6C 65 73 21 0A 40 |  output files!.@ |
| 3E 0A 0A 31 2E 20 46 69 6C 65 20 6D 61 63 72 6F | >..1. File macro |
| 20 68 61 73 20 70 61 72 61 6D 65 74 65 72 73 2E |  has parameters. |
| 20 45 72 72 6F 72 2E 0A 40 4F 40 3C 53 6C 6F 74 |  Error..@O@<Slot |
| 68 20 31 40 3E 40 28 40 33 40 29 40 7B 57 61 6C | h 1@>@(@3@)@{Wal |
| 72 75 73 40 7D 0A 40 41 40 3C 45 72 72 6F 72 20 | rus@}.@A@<Error  |
| 72 65 63 6F 76 65 72 79 20 70 6F 69 6E 74 40 3E | recovery point@> |
| 0A 0A 32 2E 20 46 69 6C 65 20 6D 61 63 72 6F 20 | ..2. File macro  |
| 69 73 20 61 64 64 69 74 69 76 65 2E 20 45 72 72 | is additive. Err |
| 6F 72 2E 0A 40 4F 40 3C 53 6C 6F 74 68 20 32 40 | or..@O@<Sloth 2@ |
| 3E 2B 3D 40 7B 57 61 6C 72 75 73 40 7D 0A 40 41 | >+=@{Walrus@}.@A |
| 40 3C 45 72 72 6F 72 20 72 65 63 6F 76 65 72 79 | @<Error recovery |
| 20 70 6F 69 6E 74 40 3E 0A 0A 33 2E 20 46 69 6C |  point@>..3. Fil |
| 65 20 6D 61 63 72 6F 20 68 61 73 20 74 6F 6F 20 | e macro has too  |
| 6C 6F 6E 67 20 61 20 6E 61 6D 65 2E 20 54 68 65 | long a name. The |
| 20 74 65 73 74 20 6E 61 6D 65 20 68 61 73 20 31 |  test name has 1 |
| 32 30 30 20 63 68 61 72 61 63 74 65 72 73 2E 20 | 200 characters.  |
| 45 72 72 2E 0A 4E 6F 74 65 3A 20 54 68 69 73 20 | Err..Note: This  |
| 74 65 73 74 20 63 61 6E 27 74 20 74 65 73 74 20 | test can't test  |
| 74 68 65 20 65 72 72 6F 72 20 6D 65 73 73 61 67 | the error messag |
| 65 20 69 66 20 74 68 65 20 6D 61 78 69 6D 75 6D | e if the maximum |
| 20 6C 65 6E 67 74 68 20 6F 66 20 61 0A 6D 61 63 |  length of a.mac |
| 72 6F 20 6E 61 6D 65 20 69 73 20 6C 65 73 73 20 | ro name is less  |
| 74 68 61 6E 20 74 68 65 20 6D 61 78 69 6D 75 6D | than the maximum |
| 20 6C 65 6E 67 74 68 20 6F 66 20 61 20 66 69 6C |  length of a fil |
| 65 20 6E 61 6D 65 20 61 73 20 74 68 65 20 6E 61 | e name as the na |
| 6D 65 0A 65 72 72 6F 72 20 69 73 20 63 61 75 67 | me.error is caug |
| 68 74 20 66 69 72 73 74 2E 0A 40 70 20 6D 61 78 | ht first..@p max |
| 69 6D 75 6D 5F 69 6E 70 75 74 5F 6C 69 6E 65 5F | imum_input_line_ |
| 6C 65 6E 67 74 68 20 3D 20 69 6E 66 69 6E 69 74 | length = infinit |
| 79 0A 40 4F 40 3C 31 32 33 34 35 36 37 38 39 30 | y.@O@<1234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 | 5678901234567890 |
| 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 | 1234567890123456 |
| 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 | 7890123456789012 |
| 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 | 3456789012345678 |
| 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 | 9012345678901234 |
| 35 36 37 38 39 30 40 3E 40 7B 40 7D 0A 40 41 40 | 567890@>@{@}.@A@ |
| 3C 45 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 | <Error recovery  |
| 70 6F 69 6E 74 40 3E 0A 0A 34 2E 20 46 69 6C 65 | point@>..4. File |
| 20 6D 61 63 72 6F 20 68 61 73 20 7A 65 72 6F 20 |  macro has zero  |
| 6F 72 20 6D 61 6E 79 20 61 74 74 72 69 62 75 74 | or many attribut |
| 65 73 2E 20 45 72 72 6F 72 2E 0A 40 4F 40 3C 53 | es. Error..@O@<S |
| 6C 6F 74 68 20 33 40 3E 40 5A 40 7B 57 61 6C 72 | loth 3@>@Z@{Walr |
| 75 73 40 7D 0A 40 41 40 3C 45 72 72 6F 72 20 72 | us@}.@A@<Error r |
| 65 63 6F 76 65 72 79 20 70 6F 69 6E 74 40 3E 0A | ecovery point@>. |
| 0A 40 4F 40 3C 53 6C 6F 74 68 20 34 40 3E 40 4D | .@O@<Sloth 4@>@M |
| 40 7B 57 61 6C 72 75 73 40 7D 0A 40 41 40 3C 45 | @{Walrus@}.@A@<E |
| 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 70 6F | rror recovery po |
| 69 6E 74 40 3E 0A 0A 40 4F 40 3C 53 6C 6F 74 68 | int@>..@O@<Sloth |
| 20 35 40 3E 40 5A 40 4D 40 7B 57 61 6C 72 75 73 |  5@>@Z@M@{Walrus |
| 40 7D 0A 40 41 40 3C 45 72 72 6F 72 20 72 65 63 | @}.@A@<Error rec |
| 6F 76 65 72 79 20 70 6F 69 6E 74 40 3E 0A 0A 35 | overy point@>..5 |
| 2E 20 50 72 65 76 69 6F 75 73 20 64 65 66 69 6E | . Previous defin |
| 69 74 69 6F 6E 20 69 73 20 66 75 6C 6C 2C 20 63 | ition is full, c |
| 75 72 72 65 6E 74 20 69 73 20 61 64 64 69 74 69 | urrent is additi |
| 76 65 2E 0A 40 24 40 3C 57 61 6C 72 75 73 20 31 | ve..@$@<Walrus 1 |
| 40 3E 3D 3D 40 7B 53 6C 6F 74 68 40 7D 0A 40 24 | @>==@{Sloth@}.@$ |
| 40 3C 57 61 6C 72 75 73 20 31 40 3E 2B 3D 40 7B | @<Walrus 1@>+=@{ |
| 41 61 72 64 76 61 72 6B 40 7D 0A 40 41 40 3C 45 | Aardvark@}.@A@<E |
| 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 70 6F | rror recovery po |
| 69 6E 74 40 3E 0A 0A 36 2E 20 50 72 65 76 69 6F | int@>..6. Previo |
| 75 73 20 64 65 66 69 6E 69 74 69 6F 6E 20 69 73 | us definition is |
| 20 61 64 64 69 74 69 76 65 2C 20 63 75 72 72 65 |  additive, curre |
| 6E 74 20 69 73 20 66 75 6C 6C 2E 0A 40 24 40 3C | nt is full..@$@< |
| 57 61 6C 72 75 73 20 32 40 3E 2B 3D 40 7B 53 6C | Walrus 2@>+=@{Sl |
| 6F 74 68 40 7D 0A 40 24 40 3C 57 61 6C 72 75 73 | oth@}.@$@<Walrus |
| 20 32 40 3E 3D 3D 40 7B 41 61 72 64 76 61 72 6B |  2@>==@{Aardvark |
| 40 7D 0A 40 41 40 3C 45 72 72 6F 72 20 72 65 63 | @}.@A@<Error rec |
| 6F 76 65 72 79 20 70 6F 69 6E 74 40 3E 0A 0A 37 | overy point@>..7 |
| 2E 20 4E 6F 6E 2D 66 69 72 73 74 20 62 6F 64 79 | . Non-first body |
| 20 70 61 72 74 20 6F 66 20 70 61 72 74 69 61 6C |  part of partial |
| 20 68 61 73 20 70 61 72 61 6D 65 74 65 72 2E 0A |  has parameter.. |
| 40 24 40 3C 55 6E 69 63 6F 72 6E 40 3E 40 28 40 | @$@<Unicorn@>@(@ |
| 33 40 29 2B 3D 40 7B 54 75 72 6B 65 79 40 7D 0A | 3@)+=@{Turkey@}. |
| 40 24 40 3C 55 6E 69 63 6F 72 6E 40 3E 40 28 40 | @$@<Unicorn@>@(@ |
| 33 40 29 2B 3D 40 7B 54 75 72 6B 65 79 40 7D 0A | 3@)+=@{Turkey@}. |
| 40 41 40 3C 45 72 72 6F 72 20 72 65 63 6F 76 65 | @A@<Error recove |
| 72 79 20 70 6F 69 6E 74 40 3E 0A 0A 38 2E 20 5A | ry point@>..8. Z |
| 65 72 6F 20 6F 72 20 6D 61 6E 79 20 61 74 74 72 | ero or many attr |
| 69 62 75 74 65 73 20 6F 6E 20 6E 6F 6E 2D 66 69 | ibutes on non-fi |
| 72 73 74 20 62 6F 64 79 20 70 61 72 74 20 6F 66 | rst body part of |
| 20 61 64 64 69 74 69 76 65 2E 0A 40 24 40 3C 45 |  additive..@$@<E |
| 6C 65 70 68 61 6E 74 40 3E 40 5A 40 4D 2B 3D 40 | lephant@>@Z@M+=@ |
| 7B 54 75 72 6B 65 79 40 7D 0A 40 24 40 3C 45 6C | {Turkey@}.@$@<El |
| 65 70 68 61 6E 74 40 3E 40 5A 40 4D 2B 3D 40 7B | ephant@>@Z@M+=@{ |
| 54 75 72 6B 65 79 40 7D 0A 40 41 40 3C 45 72 72 | Turkey@}.@A@<Err |
| 6F 72 20 72 65 63 6F 76 65 72 79 20 70 6F 69 6E | or recovery poin |
| 74 40 3E 0A 0A 39 2E 20 43 68 65 63 6B 20 74 68 | t@>..9. Check th |
| 61 74 20 6E 6F 6E 2D 65 78 69 73 74 65 6E 74 20 | at non-existent  |
| 66 6F 72 6D 61 6C 20 70 61 72 61 6D 65 74 65 72 | formal parameter |
| 73 20 61 72 65 20 63 61 75 67 68 74 2E 0A 0A 40 | s are caught...@ |
| 24 40 3C 5A 65 72 6F 40 3E 40 5A 40 7B 53 6C 6F | $@<Zero@>@Z@{Slo |
| 74 68 40 31 57 61 6C 72 75 73 40 7D 0A 40 41 40 | th@1Walrus@}.@A@ |
| 3C 45 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 | <Error recovery  |
| 70 6F 69 6E 74 40 3E 0A 0A 40 24 40 3C 4F 6E 65 | point@>..@$@<One |
| 40 3E 40 28 40 31 40 29 40 5A 40 7B 53 6C 6F 74 | @>@(@1@)@Z@{Slot |
| 68 40 32 57 61 6C 72 75 73 40 7D 0A 40 41 40 3C | h@2Walrus@}.@A@< |
| 45 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 70 | Error recovery p |
| 6F 69 6E 74 40 3E 0A 0A 40 24 40 3C 4D 61 6E 79 | oint@>..@$@<Many |
| 40 3E 40 28 40 37 40 29 40 5A 40 7B 53 6C 6F 74 | @>@(@7@)@Z@{Slot |
| 68 40 38 57 61 6C 72 75 73 40 7D 0A 40 41 40 3C | h@8Walrus@}.@A@< |
| 45 72 72 6F 72 20 72 65 63 6F 76 65 72 79 20 70 | Error recovery p |
| 6F 69 6E 74 40 3E 0A                            | oint@>.          |
+-------------------------------------------------+------------------+


=========================== Start of LINE LIST DUMP ============================

Globl Local| Text
-----------+--------------------------------------------------------------------
00001 00001| PR08: Test semantic checking of macro definitions.<010>
00002 00002| <010>
00003 00003| Trip parser to be sure that we won't get any output files!<010>
00004 00004| @><010>
00005 00005| <010>
00006 00006| 1. File macro has parameters. Error.<010>
00007 00007| @O@<Sloth 1@>@(@3@)@{Walrus@}<010>
00008 00008| @A@<Error recovery point@><010>
00009 00009| <010>
00010 00010| 2. File macro is additive. Error.<010>
00011 00011| @O@<Sloth 2@>+=@{Walrus@}<010>
00012 00012| @A@<Error recovery point@><010>
00013 00013| <010>
00014 00014| 3. File macro has too long a name. The test name has 1200 characters. Err.<010>
00015 00015| Note: This test can't test the error message if the maximum length of a<010>
00016 00016| macro name is less than the maximum length of a file name as the name<010>
00017 00017| error is caught first.<010>
00018 00018| @p maximum_input_line_length = infinity<010>
00019 00019| @O@<123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890@>@{@}<010>
00020 00020| @A@<Error recovery point@><010>
00021 00021| <010>
00022 00022| 4. File macro has zero or many attributes. Error.<010>
00023 00023| @O@<Sloth 3@>@Z@{Walrus@}<010>
00024 00024| @A@<Error recovery point@><010>
00025 00025| <010>
00026 00026| @O@<Sloth 4@>@M@{Walrus@}<010>
00027 00027| @A@<Error recovery point@><010>
00028 00028| <010>
00029 00029| @O@<Sloth 5@>@Z@M@{Walrus@}<010>
00030 00030| @A@<Error recovery point@><010>
00031 00031| <010>
00032 00032| 5. Previous definition is full, current is additive.<010>
00033 00033| @$@<Walrus 1@>==@{Sloth@}<010>
00034 00034| @$@<Walrus 1@>+=@{Aardvark@}<010>
00035 00035| @A@<Error recovery point@><010>
00036 00036| <010>
00037 00037| 6. Previous definition is additive, current is full.<010>
00038 00038| @$@<Walrus 2@>+=@{Sloth@}<010>
00039 00039| @$@<Walrus 2@>==@{Aardvark@}<010>
00040 00040| @A@<Error recovery point@><010>
00041 00041| <010>
00042 00042| 7. Non-first body part of partial has parameter.<010>
00043 00043| @$@<Unicorn@>@(@3@)+=@{Turkey@}<010>
00044 00044| @$@<Unicorn@>@(@3@)+=@{Turkey@}<010>
00045 00045| @A@<Error recovery point@><010>
00046 00046| <010>
00047 00047| 8. Zero or many attributes on non-first body part of additive.<010>
00048 00048| @$@<Elephant@>@Z@M+=@{Turkey@}<010>
00049 00049| @$@<Elephant@>@Z@M+=@{Turkey@}<010>
00050 00050| @A@<Error recovery point@><010>
00051 00051| <010>
00052 00052| 9. Check that non-existent formal parameters are caught.<010>
00053 00053| <010>
00054 00054| @$@<Zero@>@Z@{Sloth@1Walrus@}<010>
00055 00055| @A@<Error recovery point@><010>
00056 00056| <010>
00057 00057| @$@<One@>@(@1@)@Z@{Sloth@2Walrus@}<010>
00058 00058| @A@<Error recovery point@><010>
00059 00059| <010>
00060 00060| @$@<Many@>@(@7@)@Z@{Sloth@8Walrus@}<010>
00061 00061| @A@<Error recovery point@><010>
00062 00062| <End-Of-File><010>
-----------+--------------------------------------------------------------------
Globl Local| Text

============================ End of LINE LIST DUMP =============================


=========================== Start of TOKEN LIST DUMP ===========================

Summary: There are 245 tokens in the token list.

Line[Column]: Token Description
-------------------------------

0001[01]: Text. Text scrap[Grey]="PR08: Test semantic checking of macro definitions.<010>
<010>
Trip parser to be sure that we won't get any output files!<010>
"
0004[01]: @> Close name. 
0004[03]: Text. Text scrap[Grey]="<010>
<010>
1. File macro has parameters. Error.<010>
"
0007[01]: @F File defn. 
0007[03]: @< Open name. 
0007[05]: Text. Text scrap[Grey]="Sloth 1"
0007[12]: @> Close name. 
0007[14]: @( Open param. 
0007[16]: @n Parameter. Parameterno=3.
0007[18]: @} Close param. 
0007[20]: @{ Open defn. 
0007[22]: Text. Text scrap[Grey]="Walrus"
0007[28]: @} Close defn. 
0007[30]: Text. Text scrap[White]="<010>
"
0008[01]: @A New section (Level 1). 
0008[03]: @< Open name. 
0008[05]: Text. Text scrap[Grey]="Error recovery point"
0008[25]: @> Close name. 
0008[27]: Text. Text scrap[Grey]="<010>
<010>
2. File macro is additive. Error.<010>
"
0011[01]: @F File defn. 
0011[03]: @< Open name. 
0011[05]: Text. Text scrap[Grey]="Sloth 2"
0011[12]: @> Close name. 
0011[14]: Text. Text scrap[Grey]="+="
0011[16]: @{ Open defn. 
0011[18]: Text. Text scrap[Grey]="Walrus"
0011[24]: @} Close defn. 
0011[26]: Text. Text scrap[White]="<010>
"
0012[01]: @A New section (Level 1). 
0012[03]: @< Open name. 
0012[05]: Text. Text scrap[Grey]="Error recovery point"
0012[25]: @> Close name. 
0012[27]: Text. Text scrap[Grey]="<010>
<010>
3. File macro has too long a name. The test name has 1200 characters. Err.<010>
Note: This test can't test the error message if the maximum length of a<010>
macro name is less than the maximum length of a file name as the name<010>
error is caught first.<010>
"
0019[01]: @F File defn. 
0019[03]: @< Open name. 
0019[05]: Text. Text scrap[Grey]="123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890"
0019[1205]: @> Close name. 
0019[1207]: @{ Open defn. 
0019[1209]: @} Close defn. 
0019[1211]: Text. Text scrap[White]="<010>
"
0020[01]: @A New section (Level 1). 
0020[03]: @< Open name. 
0020[05]: Text. Text scrap[Grey]="Error recovery point"
0020[25]: @> Close name. 
0020[27]: Text. Text scrap[Grey]="<010>
<010>
4. File macro has zero or many attributes. Error.<010>
"
0023[01]: @F File defn. 
0023[03]: @< Open name. 
0023[05]: Text. Text scrap[Grey]="Sloth 3"
0023[12]: @> Close name. 
0023[14]: @Z Zero calls. 
0023[16]: @{ Open defn. 
0023[18]: Text. Text scrap[Grey]="Walrus"
0023[24]: @} Close defn. 
0023[26]: Text. Text scrap[White]="<010>
"
0024[01]: @A New section (Level 1). 
0024[03]: @< Open name. 
0024[05]: Text. Text scrap[Grey]="Error recovery point"
0024[25]: @> Close name. 
0024[27]: Text. Text scrap[White]="<010>
<010>
"
0026[01]: @F File defn. 
0026[03]: @< Open name. 
0026[05]: Text. Text scrap[Grey]="Sloth 4"
0026[12]: @> Close name. 
0026[14]: @M Many calls. 
0026[16]: @{ Open defn. 
0026[18]: Text. Text scrap[Grey]="Walrus"
0026[24]: @} Close defn. 
0026[26]: Text. Text scrap[White]="<010>
"
0027[01]: @A New section (Level 1). 
0027[03]: @< Open name. 
0027[05]: Text. Text scrap[Grey]="Error recovery point"
0027[25]: @> Close name. 
0027[27]: Text. Text scrap[White]="<010>
<010>
"
0029[01]: @F File defn. 
0029[03]: @< Open name. 
0029[05]: Text. Text scrap[Grey]="Sloth 5"
0029[12]: @> Close name. 
0029[14]: @Z Zero calls. 
0029[16]: @M Many calls. 
0029[18]: @{ Open defn. 
0029[20]: Text. Text scrap[Grey]="Walrus"
0029[26]: @} Close defn. 
0029[28]: Text. Text scrap[White]="<010>
"
0030[01]: @A New section (Level 1). 
0030[03]: @< Open name. 
0030[05]: Text. Text scrap[Grey]="Error recovery point"
0030[25]: @> Close name. 
0030[27]: Text. Text scrap[Grey]="<010>
<010>
5. Previous definition is full, current is additive.<010>
"
0033[01]: @$ Macro defn. 
0033[03]: @< Open name. 
0033[05]: Text. Text scrap[Grey]="Walrus 1"
0033[13]: @> Close name. 
0033[15]: Text. Text scrap[Grey]="=="
0033[17]: @{ Open defn. 
0033[19]: Text. Text scrap[Grey]="Sloth"
0033[24]: @} Close defn. 
0033[26]: Text. Text scrap[White]="<010>
"
0034[01]: @$ Macro defn. 
0034[03]: @< Open name. 
0034[05]: Text. Text scrap[Grey]="Walrus 1"
0034[13]: @> Close name. 
0034[15]: Text. Text scrap[Grey]="+="
0034[17]: @{ Open defn. 
0034[19]: Text. Text scrap[Grey]="Aardvark"
0034[27]: @} Close defn. 
0034[29]: Text. Text scrap[White]="<010>
"
0035[01]: @A New section (Level 1). 
0035[03]: @< Open name. 
0035[05]: Text. Text scrap[Grey]="Error recovery point"
0035[25]: @> Close name. 
0035[27]: Text. Text scrap[Grey]="<010>
<010>
6. Previous definition is additive, current is full.<010>
"
0038[01]: @$ Macro defn. 
0038[03]: @< Open name. 
0038[05]: Text. Text scrap[Grey]="Walrus 2"
0038[13]: @> Close name. 
0038[15]: Text. Text scrap[Grey]="+="
0038[17]: @{ Open defn. 
0038[19]: Text. Text scrap[Grey]="Sloth"
0038[24]: @} Close defn. 
0038[26]: Text. Text scrap[White]="<010>
"
0039[01]: @$ Macro defn. 
0039[03]: @< Open name. 
0039[05]: Text. Text scrap[Grey]="Walrus 2"
0039[13]: @> Close name. 
0039[15]: Text. Text scrap[Grey]="=="
0039[17]: @{ Open defn. 
0039[19]: Text. Text scrap[Grey]="Aardvark"
0039[27]: @} Close defn. 
0039[29]: Text. Text scrap[White]="<010>
"
0040[01]: @A New section (Level 1). 
0040[03]: @< Open name. 
0040[05]: Text. Text scrap[Grey]="Error recovery point"
0040[25]: @> Close name. 
0040[27]: Text. Text scrap[Grey]="<010>
<010>
7. Non-first body part of partial has parameter.<010>
"
0043[01]: @$ Macro defn. 
0043[03]: @< Open name. 
0043[05]: Text. Text scrap[Grey]="Unicorn"
0043[12]: @> Close name. 
0043[14]: @( Open param. 
0043[16]: @n Parameter. Parameterno=3.
0043[18]: @} Close param. 
0043[20]: Text. Text scrap[Grey]="+="
0043[22]: @{ Open defn. 
0043[24]: Text. Text scrap[Grey]="Turkey"
0043[30]: @} Close defn. 
0043[32]: Text. Text scrap[White]="<010>
"
0044[01]: @$ Macro defn. 
0044[03]: @< Open name. 
0044[05]: Text. Text scrap[Grey]="Unicorn"
0044[12]: @> Close name. 
0044[14]: @( Open param. 
0044[16]: @n Parameter. Parameterno=3.
0044[18]: @} Close param. 
0044[20]: Text. Text scrap[Grey]="+="
0044[22]: @{ Open defn. 
0044[24]: Text. Text scrap[Grey]="Turkey"
0044[30]: @} Close defn. 
0044[32]: Text. Text scrap[White]="<010>
"
0045[01]: @A New section (Level 1). 
0045[03]: @< Open name. 
0045[05]: Text. Text scrap[Grey]="Error recovery point"
0045[25]: @> Close name. 
0045[27]: Text. Text scrap[Grey]="<010>
<010>
8. Zero or many attributes on non-first body part of additive.<010>
"
0048[01]: @$ Macro defn. 
0048[03]: @< Open name. 
0048[05]: Text. Text scrap[Grey]="Elephant"
0048[13]: @> Close name. 
0048[15]: @Z Zero calls. 
0048[17]: @M Many calls. 
0048[19]: Text. Text scrap[Grey]="+="
0048[21]: @{ Open defn. 
0048[23]: Text. Text scrap[Grey]="Turkey"
0048[29]: @} Close defn. 
0048[31]: Text. Text scrap[White]="<010>
"
0049[01]: @$ Macro defn. 
0049[03]: @< Open name. 
0049[05]: Text. Text scrap[Grey]="Elephant"
0049[13]: @> Close name. 
0049[15]: @Z Zero calls. 
0049[17]: @M Many calls. 
0049[19]: Text. Text scrap[Grey]="+="
0049[21]: @{ Open defn. 
0049[23]: Text. Text scrap[Grey]="Turkey"
0049[29]: @} Close defn. 
0049[31]: Text. Text scrap[White]="<010>
"
0050[01]: @A New section (Level 1). 
0050[03]: @< Open name. 
0050[05]: Text. Text scrap[Grey]="Error recovery point"
0050[25]: @> Close name. 
0050[27]: Text. Text scrap[Grey]="<010>
<010>
9. Check that non-existent formal parameters are caught.<010>
<010>
"
0054[01]: @$ Macro defn. 
0054[03]: @< Open name. 
0054[05]: Text. Text scrap[Grey]="Zero"
0054[09]: @> Close name. 
0054[11]: @Z Zero calls. 
0054[13]: @{ Open defn. 
0054[15]: Text. Text scrap[Grey]="Sloth"
0054[20]: @n Parameter. Parameterno=1.
0054[22]: Text. Text scrap[Grey]="Walrus"
0054[28]: @} Close defn. 
0054[30]: Text. Text scrap[White]="<010>
"
0055[01]: @A New section (Level 1). 
0055[03]: @< Open name. 
0055[05]: Text. Text scrap[Grey]="Error recovery point"
0055[25]: @> Close name. 
0055[27]: Text. Text scrap[White]="<010>
<010>
"
0057[01]: @$ Macro defn. 
0057[03]: @< Open name. 
0057[05]: Text. Text scrap[Grey]="One"
0057[08]: @> Close name. 
0057[10]: @( Open param. 
0057[12]: @n Parameter. Parameterno=1.
0057[14]: @} Close param. 
0057[16]: @Z Zero calls. 
0057[18]: @{ Open defn. 
0057[20]: Text. Text scrap[Grey]="Sloth"
0057[25]: @n Parameter. Parameterno=2.
0057[27]: Text. Text scrap[Grey]="Walrus"
0057[33]: @} Close defn. 
0057[35]: Text. Text scrap[White]="<010>
"
0058[01]: @A New section (Level 1). 
0058[03]: @< Open name. 
0058[05]: Text. Text scrap[Grey]="Error recovery point"
0058[25]: @> Close name. 
0058[27]: Text. Text scrap[White]="<010>
<010>
"
0060[01]: @$ Macro defn. 
0060[03]: @< Open name. 
0060[05]: Text. Text scrap[Grey]="Many"
0060[09]: @> Close name. 
0060[11]: @( Open param. 
0060[13]: @n Parameter. Parameterno=7.
0060[15]: @} Close param. 
0060[17]: @Z Zero calls. 
0060[19]: @{ Open defn. 
0060[21]: Text. Text scrap[Grey]="Sloth"
0060[26]: @n Parameter. Parameterno=8.
0060[28]: Text. Text scrap[Grey]="Walrus"
0060[34]: @} Close defn. 
0060[36]: Text. Text scrap[White]="<010>
"
0061[01]: @A New section (Level 1). 
0061[03]: @< Open name. 
0061[05]: Text. Text scrap[Grey]="Error recovery point"
0061[25]: @> Close name. 
0061[27]: Text. Text scrap[White]="<010>
"
0062[01]: End Of File. 
============================ End of TOKEN LIST DUMP ============================


========================== Start of MACRO TABLE DUMP ===========================


------------------- Start of Macro Dump --------------------
Macro Name  : "#file"
Defined?    : Yes.
Parameters  : 0
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : Yes.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=0, Pos(L,C)=(5369005744,5368823512), Expression follows:

---- Start of Expression ----

--- Start Special Function ---
---- End Special Function ----

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "#line"
Defined?    : Yes.
Parameters  : 0
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : Yes.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=0, Pos(L,C)=(5369005744,5368823512), Expression follows:

---- Start of Expression ----

--- Start Special Function ---
---- End Special Function ----

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "#timestamp"
Defined?    : Yes.
Parameters  : 0
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : Yes.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=0, Pos(L,C)=(5369005744,5368823512), Expression follows:

---- Start of Expression ----

--- Start Special Function ---
---- End Special Function ----

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Elephant"
Defined?    : Yes.
Parameters  : 0
Additive?   : Yes.
Zero Calls? : Yes.
Many Calls? : Yes.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=4, Pos(L,C)=(48,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Turkey"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Many"
Defined?    : Yes.
Parameters  : 7
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=7, Pos(L,C)=(60,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Sloth"
------ End Text Element ------


-- Start Parameter Element --
Parameter number=8.
Parameter is of macro "Many".
--- End Parameter Element ---


----- Start Text Element -----
Text scrap[Grey]="Walrus"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "One"
Defined?    : Yes.
Parameters  : 1
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=6, Pos(L,C)=(57,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Sloth"
------ End Text Element ------


-- Start Parameter Element --
Parameter number=2.
Parameter is of macro "One".
--- End Parameter Element ---


----- Start Text Element -----
Text scrap[Grey]="Walrus"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Sloth 1"
Defined?    : No.
-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Sloth 2"
Defined?    : No.
-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Sloth 3"
Defined?    : No.
-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Sloth 4"
Defined?    : No.
-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Sloth 5"
Defined?    : No.
-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Unicorn"
Defined?    : Yes.
Parameters  : 3
Additive?   : Yes.
Zero Calls? : No.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=3, Pos(L,C)=(43,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Turkey"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Walrus 1"
Defined?    : Yes.
Parameters  : 0
Additive?   : No.
Zero Calls? : No.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=1, Pos(L,C)=(33,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Sloth"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Walrus 2"
Defined?    : Yes.
Parameters  : 0
Additive?   : Yes.
Zero Calls? : No.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=2, Pos(L,C)=(38,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Sloth"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



------------------- Start of Macro Dump --------------------
Macro Name  : "Zero"
Defined?    : Yes.
Parameters  : 0
Additive?   : No.
Zero Calls? : Yes.
Many Calls? : No.
Output File?: No.
Automatic Line Directive Macro?: No.
Call list   :
Macro body  :

--Start of List of Body Parts--
This macro has 1 body part.
Body part 1: Seqnum=5, Pos(L,C)=(54,3), Expression follows:

---- Start of Expression ----

----- Start Text Element -----
Text scrap[Grey]="Sloth"
------ End Text Element ------


-- Start Parameter Element --
Parameter number=1.
Parameter is of macro "Zero".
--- End Parameter Element ---


----- Start Text Element -----
Text scrap[Grey]="Walrus"
------ End Text Element ------

----- End of Expression -----

---End of List of Body Parts---

-------------------- End of Macro Dump ---------------------



=========================== End of MACRO TABLE DUMP ============================


========================= Start of DOCUMENT LIST DUMP ==========================


TEXT COMPONENT: Pos(L,C)=(1,1). 

-- Start of Text Scrap List --
Text scrap[Grey]="PR08: Test semantic checking of macro definitions.<010>
<010>
Trip parser to be sure that we won't get any output files!<010>
"
--- End of Text Scrap List ---


TEXT COMPONENT: Pos(L,C)=(4,3). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
1. File macro has parameters. Error.<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "1", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(8,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
2. File macro is additive. Error.<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "2", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(12,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
3. File macro has too long a name. The test name has 1200 characters. Err.<010>
Note: This test can't test the error message if the maximum length of a<010>
macro name is less than the maximum length of a file name as the name<010>
error is caught first.<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "3", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(20,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
4. File macro has zero or many attributes. Error.<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "4", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(24,27). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "5", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(27,27). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "6", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(30,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
5. Previous definition is full, current is additive.<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(33,1). 
Part 1 of macro @<Walrus 1@>.

TEXT COMPONENT: Pos(L,C)=(33,26). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "7", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(35,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
6. Previous definition is additive, current is full.<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(38,1). 
Part 1 of macro @<Walrus 2@>.

TEXT COMPONENT: Pos(L,C)=(38,26). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "8", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(40,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
7. Non-first body part of partial has parameter.<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(43,1). 
Part 1 of macro @<Unicorn@>.

TEXT COMPONENT: Pos(L,C)=(43,32). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "9", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(45,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
8. Zero or many attributes on non-first body part of additive.<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(48,1). 
Part 1 of macro @<Elephant@>.

TEXT COMPONENT: Pos(L,C)=(48,31). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "10", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(50,27). 

-- Start of Text Scrap List --
Text scrap[Grey]="<010>
<010>
9. Check that non-existent formal parameters are caught.<010>
<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(54,1). 
Part 1 of macro @<Zero@>.

TEXT COMPONENT: Pos(L,C)=(54,30). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "11", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(55,27). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(57,1). 
Part 1 of macro @<One@>.

TEXT COMPONENT: Pos(L,C)=(57,35). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "12", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(58,27). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
<010>
"
--- End of Text Scrap List ---


MACRO DEFINITION COMPONENT: Pos(L,C)=(60,1). 
Part 1 of macro @<Many@>.

TEXT COMPONENT: Pos(L,C)=(60,36). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


TYPESETTER DIRECTIVE COMPONENT: 
   Section "13", Section name="Error recovery point".

TEXT COMPONENT: Pos(L,C)=(61,27). 

-- Start of Text Scrap List --
Text scrap[White]="<010>
"
--- End of Text Scrap List ---


========================== End of DOCUMENT LIST DUMP ===========================


Global Local| Input File
------------+-------------------------------------------------------------------
     1     1| PR08: Test semantic checking of macro definitions.
     2     2| 
     3     3| Trip parser to be sure that we won't get any output files!
     4     4| @>
       Error|.^The parser was at the top level and was expecting
            |.^one of: {Directive, Text, Macro definition, EOF}.
     5     5| 
     6     6| 1. File macro has parameters. Error.
     7     7| @O@<Sloth 1@>@(@3@)@{Walrus@}
            |...^Macro definition ignored.
       Error|................^Macros attached to output files cannot be parameterized.
            |................^Reason: No actual parameters would be available during
            |................^        output file generation.
            |....................^Skipping after error to the next major construct...
     8     8| @A@<Error recovery point@>
            |.^...skipped to here after the error.
     9     9| 
    10    10| 2. File macro is additive. Error.
    11    11| @O@<Sloth 2@>+=@{Walrus@}
            |...^Macro definition ignored.
       Error|..............^Macros attached to output files cannot be additive.
            |..............^Reason: Preventing this makes it easy to find output
            |..............^file macros later, because there will be exactly one
            |..............^@O declaration in the input file for each output file.
            |..............^To do what you are trying to do, just create an additive
            |..............^bridging macro, like this:
            |..............^   @O@<prog.c@>@{@<Bridge@>@}
            |..............^   @$@<Bridge@>+=@{void stringhack()...@}
            |..............^   @$@<Bridge@>+=@{main()...@}
            |................^Skipping after error to the next major construct...
    12    12| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    13    13| 
    14    14| 3. File macro has too long a name. The test name has 1200 characters. Err.
    15    15| Note: This test can't test the error message if the maximum length of a
    16    16| macro name is less than the maximum length of a file name as the name
    17    17| error is caught first.
    18    18| @p maximum_input_line_length = infinity
    19    19| @O@<123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890@>@{@}
       Error|.....^Name is too long.
            |.....^The maximum length of a legal name is 80 characters.
            |.....^Skipping after error to the next major construct...
    20    20| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    21    21| 
    22    22| 4. File macro has zero or many attributes. Error.
    23    23| @O@<Sloth 3@>@Z@{Walrus@}
            |...^Macro definition ignored.
       Error|..............^Macros attached to output files cannot have @Z or @M.
            |..............^Reason: They are always called once to generate their
            |..............^output file and they cannot be called from other macros.
            |..............^Hence they are always called exactly once and so there
            |..............^can be no need for @Z or @M in their declarations.
            |................^Skipping after error to the next major construct...
    24    24| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    25    25| 
    26    26| @O@<Sloth 4@>@M@{Walrus@}
            |...^Macro definition ignored.
       Error|..............^Macros attached to output files cannot have @Z or @M.
            |..............^Reason: They are always called once to generate their
            |..............^output file and they cannot be called from other macros.
            |..............^Hence they are always called exactly once and so there
            |..............^can be no need for @Z or @M in their declarations.
            |................^Skipping after error to the next major construct...
    27    27| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    28    28| 
    29    29| @O@<Sloth 5@>@Z@M@{Walrus@}
            |...^Macro definition ignored.
       Error|..............^Macros attached to output files cannot have @Z or @M.
            |..............^Reason: They are always called once to generate their
            |..............^output file and they cannot be called from other macros.
            |..............^Hence they are always called exactly once and so there
            |..............^can be no need for @Z or @M in their declarations.
            |..................^Skipping after error to the next major construct...
    30    30| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    31    31| 
    32    32| 5. Previous definition is full, current is additive.
    33    33| @$@<Walrus 1@>==@{Sloth@}
    34    34| @$@<Walrus 1@>+=@{Aardvark@}
       Error|...^A full definition of this macro appears at line 33.
            |...^Full and additive definitions of the same macro cannot coexist.
            |...^Macro definition ignored.
            |.................^Skipping after error to the next major construct...
    35    35| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    36    36| 
    37    37| 6. Previous definition is additive, current is full.
    38    38| @$@<Walrus 2@>+=@{Sloth@}
    39    39| @$@<Walrus 2@>==@{Aardvark@}
       Error|...^An additive definition of this macro appears at line 38.
            |...^Full and additive definitions of the same macro cannot coexist.
            |...^Macro definition ignored.
            |.................^Skipping after error to the next major construct...
    40    40| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    41    41| 
    42    42| 7. Non-first body part of partial has parameter.
    43    43| @$@<Unicorn@>@(@3@)+=@{Turkey@}
    44    44| @$@<Unicorn@>@(@3@)+=@{Turkey@}
            |...^Macro definition ignored.
       Error|................^The formal parameter list of an additive macro
            |................^must be placed only in the first definition part.
            |................^The first part of this macro appears at line 43.
            |......................^Skipping after error to the next major construct...
    45    45| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    46    46| 
    47    47| 8. Zero or many attributes on non-first body part of additive.
    48    48| @$@<Elephant@>@Z@M+=@{Turkey@}
    49    49| @$@<Elephant@>@Z@M+=@{Turkey@}
            |...^Macro definition ignored.
       Error|...............^@Z and @M modifiers for additive macros must
            |...............^be placed only in the first definition part.
            |...............^The first part of this macro appears at line 48.
            |.....................^Skipping after error to the next major construct...
    50    50| @A@<Error recovery point@>
            |.^...skipped to here after the error.
    51    51| 
    52    52| 9. Check that non-existent formal parameters are caught.
    53    53| 
    54    54| @$@<Zero@>@Z@{Sloth@1Walrus@}
       Error|....................^Macro being defined has only 0 parameters.
    55    55| @A@<Error recovery point@>
    56    56| 
    57    57| @$@<One@>@(@1@)@Z@{Sloth@2Walrus@}
       Error|.........................^Macro being defined has only 1 parameter.
    58    58| @A@<Error recovery point@>
    59    59| 
    60    60| @$@<Many@>@(@7@)@Z@{Sloth@8Walrus@}
       Error|..........................^Macro being defined has only 7 parameters.
    61    61| @A@<Error recovery point@>
            | <End-Of-File>
------------+-------------------------------------------------------------------

There were 14 Errors.