forked from dbp/funtal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparser.messages
1361 lines (1180 loc) · 49.7 KB
/
parser.messages
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
expression_eof: BIGLAMBDA OTHER_IDENTIFIER DOT TIMES
##
## Ends in an error in state: 105.
##
## expression -> BIGLAMBDA identifier DOT . expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## BIGLAMBDA identifier DOT
##
Parsing a type abstraction expression of the form "Lam ID. EXP",
we have parsed "Lam ID." and now expect an expression.
expression_eof: BIGLAMBDA OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 104.
##
## expression -> BIGLAMBDA identifier . DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## BIGLAMBDA identifier
##
Parsing a type abstraction expression of the form "Lam ID. EXP",
we have parsed "Lam ID" and now expect a '.'.
expression_eof: BIGLAMBDA UNPACK
##
## Ends in an error in state: 103.
##
## expression -> BIGLAMBDA . identifier DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## BIGLAMBDA
##
Parsing a type abstraction expression of the form "Lam ID. EXP",
we have parsed "Lam" and now expect an identifier.
expression_eof: BLAME COLON LPAREN TIMES THEN
##
## Ends in an error in state: 66.
##
## simple_expression -> BLAME COLON LPAREN typ . RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## BLAME COLON LPAREN typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a blame expression of the form "blame : (TYP)",
we have parsed "blame : (TYP" and now expect a ')'.
expression_eof: BLAME COLON LPAREN UNPACK
##
## Ends in an error in state: 65.
##
## simple_expression -> BLAME COLON LPAREN . typ RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## BLAME COLON LPAREN
##
Parsing a blame expression of the form "blame : (TYP)",
we have parsed "blame : (" and now expect a type.
expression_eof: BLAME COLON UNPACK
##
## Ends in an error in state: 64.
##
## simple_expression -> BLAME COLON . LPAREN typ RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## BLAME COLON
##
Parsing a blame expression of the form "blame : (TYP)",
we have parsed "blame :" and now expect a '('.
expression_eof: BLAME UNPACK
##
## Ends in an error in state: 63.
##
## simple_expression -> BLAME . COLON LPAREN typ RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## BLAME
##
Parsing a blame expression of the form "blame : (TYP)",
we have parsed "blame" and now expect a colon.
expression_eof: IF TRUE RPAREN
##
## Ends in an error in state: 72.
##
## cast_expression -> cast_expression . COLON typ conv_lbl CAST typ [ THEN COLON ]
## cast_expression -> cast_expression . COLON typ CAST typ [ THEN COLON ]
## expression -> IF cast_expression . THEN cast_expression ELSE cast_expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF cast_expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
##
Parsing an if expression of the form "if EXP then EXP else EXP",
we have parsed "if EXP" and now expect a "then", but encountered a ')'.
expression_eof: IF TRUE THEN TRUE ELSE TRUE THEN
##
## Ends in an error in state: 76.
##
## cast_expression -> cast_expression . COLON typ conv_lbl CAST typ [ RPAREN RANGLE IN EOF COMMA COLON ]
## cast_expression -> cast_expression . COLON typ CAST typ [ RPAREN RANGLE IN EOF COMMA COLON ]
## expression -> IF cast_expression THEN cast_expression ELSE cast_expression . [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF cast_expression THEN cast_expression ELSE cast_expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
##
Parsed an if expression, but next encountered a "then".
If the if expression is the condition of an outer if expression,
you should wrap it in parentheses.
expression_eof: IF TRUE THEN TRUE ELSE UNPACK
##
## Ends in an error in state: 75.
##
## expression -> IF cast_expression THEN cast_expression ELSE . cast_expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF cast_expression THEN cast_expression ELSE
##
Parsing an if expression of the form "if EXP then EXP else EXP",
we have parsed "if EXP then EXP else" and now expect an expression.
expression_eof: IF TRUE THEN TRUE THEN
##
## Ends in an error in state: 74.
##
## cast_expression -> cast_expression . COLON typ conv_lbl CAST typ [ ELSE COLON ]
## cast_expression -> cast_expression . COLON typ CAST typ [ ELSE COLON ]
## expression -> IF cast_expression THEN cast_expression . ELSE cast_expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF cast_expression THEN cast_expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
##
Parsing an if expression of the form "if EXP then EXP else EXP",
we have parsed "if EXP then EXP" and now expect an "else".
expression_eof: IF TRUE THEN UNPACK
##
## Ends in an error in state: 73.
##
## expression -> IF cast_expression THEN . cast_expression ELSE cast_expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF cast_expression THEN
##
Parsing an if expression of the form "if EXP then EXP else EXP",
we have parsed "if EXP then" and now expect an expression.
If you believe the next term to be an expression, try using
parentheses.
expression_eof: IF UNPACK
##
## Ends in an error in state: 61.
##
## expression -> IF . cast_expression THEN cast_expression ELSE cast_expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## IF
##
Parsing an if expression of the form "if EXP then EXP else EXP",
we have parsed "if" and now expect an expression.
If you believe the next term to be an expression, try using
parentheses.
expression_eof: LAMBDA LPAREN OTHER_IDENTIFIER COLON TIMES RPAREN DOT TIMES
##
## Ends in an error in state: 60.
##
## expression -> LAMBDA LPAREN term_variable COLON typ RPAREN DOT . expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN term_variable COLON typ RPAREN DOT
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (ID : TYP)." and now expect an expression.
expression_eof: LAMBDA LPAREN OTHER_IDENTIFIER COLON TIMES RPAREN UNPACK
##
## Ends in an error in state: 59.
##
## expression -> LAMBDA LPAREN term_variable COLON typ RPAREN . DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN term_variable COLON typ RPAREN
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (ID : TYP)" and now expect a '.'.
expression_eof: LAMBDA LPAREN OTHER_IDENTIFIER COLON TIMES THEN
##
## Ends in an error in state: 58.
##
## expression -> LAMBDA LPAREN term_variable COLON typ . RPAREN DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN term_variable COLON typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (ID : TYP" and now expect a ')'.
expression_eof: LAMBDA LPAREN OTHER_IDENTIFIER COLON UNPACK
##
## Ends in an error in state: 57.
##
## expression -> LAMBDA LPAREN term_variable COLON . typ RPAREN DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN term_variable COLON
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (ID :" and now expect a type.
expression_eof: LAMBDA LPAREN OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 56.
##
## expression -> LAMBDA LPAREN term_variable . COLON typ RPAREN DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN term_variable
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (ID" and now expect a colon.
expression_eof: LAMBDA LPAREN UNPACK
##
## Ends in an error in state: 55.
##
## expression -> LAMBDA LPAREN . term_variable COLON typ RPAREN DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA LPAREN
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam (" and now expect an identifier.
expression_eof: LAMBDA UNPACK
##
## Ends in an error in state: 54.
##
## expression -> LAMBDA . LPAREN term_variable COLON typ RPAREN DOT expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LAMBDA
##
Parsing a lambda expression of the form "lam (ID : TYP). EXP",
we have parsed "lam" and now expect a '('.
expression_eof: LANGLE TIMES
##
## Ends in an error in state: 53.
##
## simple_expression -> LANGLE . expression COMMA expression RANGLE [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LANGLE
##
Parsing a pair expression of the form "<EXP, EXP>",
we have parsed "<" and now expect an expression.
expression_eof: LANGLE TRUE COMMA TIMES
##
## Ends in an error in state: 110.
##
## simple_expression -> LANGLE expression COMMA . expression RANGLE [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LANGLE expression COMMA
##
Parsing a pair expression of the form "<EXP, EXP>",
we have parsed "<EXP," and now expect an expression.
expression_eof: LANGLE TRUE COMMA TRUE RPAREN
##
## Ends in an error in state: 111.
##
## simple_expression -> LANGLE expression COMMA expression . RANGLE [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LANGLE expression COMMA expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
## In state 107, spurious reduction of production expression -> cast_expression
##
Parsing a pair expression of the form "<EXP, EXP>",
we have parsed "<EXP, EXP" and now expect a '>'.
expression_eof: LANGLE TRUE RPAREN
##
## Ends in an error in state: 109.
##
## simple_expression -> LANGLE expression . COMMA expression RANGLE [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LANGLE expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
## In state 107, spurious reduction of production expression -> cast_expression
##
Parsing a pair expression of the form "<EXP, EXP>",
we have parsed "<EXP" and now expect a ','.
expression_eof: LET OTHER_IDENTIFIER COLON TIMES EQUAL TIMES
##
## Ends in an error in state: 52.
##
## expression -> LET term_variable COLON typ EQUAL . expression IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable COLON typ EQUAL
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID : TYP =" and now expect an expression.
expression_eof: LET OTHER_IDENTIFIER COLON TIMES EQUAL TRUE IN TIMES
##
## Ends in an error in state: 114.
##
## expression -> LET term_variable COLON typ EQUAL expression IN . expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable COLON typ EQUAL expression IN
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID : TYP = EXP in" and now expect an expression.
expression_eof: LET OTHER_IDENTIFIER COLON TIMES EQUAL TRUE RPAREN
##
## Ends in an error in state: 113.
##
## expression -> LET term_variable COLON typ EQUAL expression . IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable COLON typ EQUAL expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
## In state 107, spurious reduction of production expression -> cast_expression
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID : TYP = EXP" and now expect an 'in'.
expression_eof: LET OTHER_IDENTIFIER COLON TIMES THEN
##
## Ends in an error in state: 51.
##
## expression -> LET term_variable COLON typ . EQUAL expression IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable COLON typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID : TYP" and now expect an '='.
expression_eof: LET OTHER_IDENTIFIER COLON UNPACK
##
## Ends in an error in state: 50.
##
## expression -> LET term_variable COLON . typ EQUAL expression IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable COLON
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID :" and now expect a type.
expression_eof: LET OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 49.
##
## expression -> LET term_variable . COLON typ EQUAL expression IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET term_variable
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let ID" and now expect a colon.
expression_eof: LET UNPACK
##
## Ends in an error in state: 48.
##
## expression -> LET . term_variable COLON typ EQUAL expression IN expression [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## LET
##
Parsing a let expression of the form "let ID : TYP = EXP in EXP",
we have parsed "let" and now expect an identifier.
expression_eof: LPAREN TIMES
##
## Ends in an error in state: 41.
##
## simple_expression -> LPAREN . expression RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LPAREN
##
Parsing a parenthesized expression of the form "(EXP)",
we have parsed "(" and now expect an expression.
expression_eof: LPAREN TRUE RANGLE
##
## Ends in an error in state: 121.
##
## simple_expression -> LPAREN expression . RPAREN [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LPAREN expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
## In state 107, spurious reduction of production expression -> cast_expression
##
Parsing a parenthesized expression of the form "(EXP)",
we have parsed "(EXP" and now expect a ')'.
expression_eof: MINUS INTEGER UNPACK
##
## Ends in an error in state: 89.
##
## arith_expression -> arith_expression . PLUS arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . MINUS arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . TIMES arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . EQUAL arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## cast_expression -> arith_expression . [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## arith_expression
##
Parsing an arithmetic expression of the form "EXP OP EXP",
we have parsed "EXP" and now expect one of "+", "-", or "*".
expression_eof: MINUS UNPACK
##
## Ends in an error in state: 45.
##
## arith_expression -> MINUS . nat [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## MINUS
##
Parsing a number of the form "-n",
we have parsed "-" and now expect a natural number.
expression_eof: PACK EXISTS OTHER_IDENTIFIER DOT UNPACK
##
## Ends in an error in state: 15.
##
## typ -> EXISTS identifier DOT . typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## EXISTS identifier DOT
##
Parsing an existential type of the form "exists X. TYP",
we have parsed "exists X." and now expect a type.
expression_eof: PACK EXISTS OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 14.
##
## typ -> EXISTS identifier . DOT typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## EXISTS identifier
##
Parsing an existential type of the form "exists X. TYP",
we have parsed "exists X" and now expect a '.'.
expression_eof: PACK EXISTS UNPACK
##
## Ends in an error in state: 13.
##
## typ -> EXISTS . identifier DOT typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## EXISTS
##
Parsing an existential type of the form "exists X. TYP",
we have parsed "exists" and now expect a type variable.
expression_eof: PACK FORALL OTHER_IDENTIFIER DOT UNPACK
##
## Ends in an error in state: 12.
##
## typ -> FORALL identifier DOT . typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## FORALL identifier DOT
##
Parsing a forall type of the form "forall ID. TYP",
we have parsed "forall ID." and now expect a type.
expression_eof: PACK FORALL OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 11.
##
## typ -> FORALL identifier . DOT typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## FORALL identifier
##
Parsing a forall type of the form "forall ID. TYP",
we have parsed "forall ID" and now expect a '.'.
expression_eof: PACK FORALL UNPACK
##
## Ends in an error in state: 7.
##
## typ -> FORALL . identifier DOT typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## FORALL
##
Parsing a forall type of the form "forall ID. TYP",
we have parsed "forall" and now expect an indentifier.
expression_eof: PACK LANGLE TIMES COMMA TIMES THEN
##
## Ends in an error in state: 26.
##
## simple_typ -> LANGLE typ COMMA typ . RANGLE [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LANGLE typ COMMA typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a pair type of the form "<TYP, TYP>",
we have parsed "<TYP, TYP" and now expect a '>'.
expression_eof: PACK LANGLE TIMES COMMA UNPACK
##
## Ends in an error in state: 25.
##
## simple_typ -> LANGLE typ COMMA . typ RANGLE [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LANGLE typ COMMA
##
Parsing a pair type of the form "<TYP, TYP>",
we have parsed "<TYP," and now expect a type.
expression_eof: PACK LANGLE TIMES THEN
##
## Ends in an error in state: 24.
##
## simple_typ -> LANGLE typ . COMMA typ RANGLE [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LANGLE typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a pair type of the form "<TYP, TYP>",
we have parsed "<TYP" and now expect a ','.
expression_eof: PACK LANGLE UNPACK
##
## Ends in an error in state: 5.
##
## simple_typ -> LANGLE . typ COMMA typ RANGLE [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LANGLE
##
Parsing a pair type of the form "<TYP, TYP>",
we have parsed "<" and now expect a type.
expression_eof: PACK LPAREN TIMES THEN
##
## Ends in an error in state: 28.
##
## simple_typ -> LPAREN typ . RPAREN [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LPAREN typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a parenthesized type of the form "(TYP)",
we have parsed "(TYP" and now expect a ')'.
expression_eof: PACK LPAREN UNPACK
##
## Ends in an error in state: 4.
##
## simple_typ -> LPAREN . typ RPAREN [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ARROW ]
##
## The known suffix of the stack is as follows:
## LPAREN
##
Parsing a parenthesized type of the form "(TYP)",
we have parsed "(" and now expect a type.
expression_eof: PACK TIMES ARROW UNPACK
##
## Ends in an error in state: 21.
##
## typ -> simple_typ ARROW . typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## simple_typ ARROW
##
Parsing a function type of the form "TYP -> TYP",
we have parsed "TYP ->" and now expect a type.
expression_eof: PACK TIMES COMMA TIMES
##
## Ends in an error in state: 44.
##
## expression -> PACK typ COMMA . expression IN identifier DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ COMMA
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP," and now expect an expression.
expression_eof: PACK TIMES COMMA TRUE IN OTHER_IDENTIFIER DOT UNPACK
##
## Ends in an error in state: 119.
##
## expression -> PACK typ COMMA expression IN identifier DOT . typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ COMMA expression IN identifier DOT
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP, EXP in X." and now expect a type.
expression_eof: PACK TIMES COMMA TRUE IN OTHER_IDENTIFIER UNPACK
##
## Ends in an error in state: 118.
##
## expression -> PACK typ COMMA expression IN identifier . DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ COMMA expression IN identifier
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP, EXP in X" and now expect a '.'.
expression_eof: PACK TIMES COMMA TRUE IN UNPACK
##
## Ends in an error in state: 117.
##
## expression -> PACK typ COMMA expression IN . identifier DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ COMMA expression IN
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP, EXP in" and now expect an identifier.
expression_eof: PACK TIMES COMMA TRUE RPAREN
##
## Ends in an error in state: 116.
##
## expression -> PACK typ COMMA expression . IN identifier DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ COMMA expression
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 92, spurious reduction of production arith_expression -> app_expression
## In state 89, spurious reduction of production cast_expression -> arith_expression
## In state 107, spurious reduction of production expression -> cast_expression
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP, EXP" and now expect an "in".
expression_eof: PACK TIMES THEN
##
## Ends in an error in state: 43.
##
## expression -> PACK typ . COMMA expression IN identifier DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP" and now expect a ','.
expression_eof: PACK TIMES UNPACK
##
## Ends in an error in state: 20.
##
## typ -> simple_typ . ARROW typ [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
## typ -> simple_typ . [ THEN RPAREN RBRACKET RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON CAST ]
##
## The known suffix of the stack is as follows:
## simple_typ
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack TYP" and now expect a ','.
expression_eof: PACK UNPACK
##
## Ends in an error in state: 42.
##
## expression -> PACK . typ COMMA expression IN identifier DOT typ [ RPAREN RANGLE IN EOF COMMA ]
##
## The known suffix of the stack is as follows:
## PACK
##
Parsing a pack of the form "pack TYP, EXP in X. TYP",
we have parsed "pack" and now expect a type.
expression_eof: PI1 UNPACK
##
## Ends in an error in state: 40.
##
## simple_expression -> PI1 . simple_expression [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## PI1
##
Parsing a projection of the form "pi1 EXP",
we have parsed "pi1" and now expect an expression.
expression_eof: PI2 UNPACK
##
## Ends in an error in state: 39.
##
## simple_expression -> PI2 . simple_expression [ TRUE TIMES THEN RPAREN RANGLE PLUS PI2 PI1 OTHER_IDENTIFIER MINUS LPAREN LBRACKET LANGLE INTEGER IN FALSE EQUAL EOF ELSE COMMA COLON CAP_IDENTIFIER BLAME A_IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## PI2
##
Parsing a projection of the form "pi2 EXP",
we have parsed "pi2" and now expect an expression.
expression_eof: TIMES
##
## Ends in an error in state: 0.
##
## expression_eof' -> . expression_eof [ # ]
##
## The known suffix of the stack is as follows:
##
##
The symbol * is either a type or an operation, not an expression.
expression_eof: TRUE COLON TIMES CAST UNPACK
##
## Ends in an error in state: 84.
##
## cast_expression -> cast_expression COLON typ CAST . typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## cast_expression COLON typ CAST
##
Parsing a cast expression of the form "EXP : TYP => TYP",
we have parsed "EXP : TYP =>" and now expect a type.
expression_eof: TRUE COLON TIMES MINUS UNPACK
##
## Ends in an error in state: 82.
##
## conv_lbl -> MINUS . type_name [ CAST ]
##
## The known suffix of the stack is as follows:
## MINUS
##
Parsing a conversion label of the form "-ID",
we have parsed "-" and now expect an identifier.
expression_eof: TRUE COLON TIMES PLUS A_IDENTIFIER CAST UNPACK
##
## Ends in an error in state: 87.
##
## cast_expression -> cast_expression COLON typ conv_lbl CAST . typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## cast_expression COLON typ conv_lbl CAST
##
Parsing a cast expression of the form "EXP : TYP => TYP",
we have parsed "EXP : TYP =>" and now expect a type.
expression_eof: TRUE COLON TIMES PLUS A_IDENTIFIER UNPACK
##
## Ends in an error in state: 86.
##
## cast_expression -> cast_expression COLON typ conv_lbl . CAST typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## cast_expression COLON typ conv_lbl
##
Parsing a conversion expression of the form "EXP : TYP +ID=> TYP",
we have parsed "EXP : TYP +ID" and now expect a "=>".
expression_eof: TRUE COLON TIMES PLUS UNPACK
##
## Ends in an error in state: 79.
##
## conv_lbl -> PLUS . type_name [ CAST ]
##
## The known suffix of the stack is as follows:
## PLUS
##
Parsing a conversion label of the form "+ID",
we have parsed "+" and now expect an identifier.
expression_eof: TRUE COLON TIMES THEN
##
## Ends in an error in state: 78.
##
## cast_expression -> cast_expression COLON typ . conv_lbl CAST typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
## cast_expression -> cast_expression COLON typ . CAST typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## cast_expression COLON typ
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 20, spurious reduction of production typ -> simple_typ
##
Parsing either a conversion expression of the form "EXP : TYP +ID=> TYP",
or a cast expression of the form "EXP : TYP => TYP",
we have parsed "EXP : TYP" and now expect either a conversion label or a "=>".
expression_eof: TRUE COLON UNPACK
##
## Ends in an error in state: 77.
##
## cast_expression -> cast_expression COLON . typ conv_lbl CAST typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
## cast_expression -> cast_expression COLON . typ CAST typ [ THEN RPAREN RANGLE IN EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## cast_expression COLON
##
Parsing either a conversion expression of the form "EXP : TYP +ID=> TYP",
or a cast expression of the form "EXP : TYP => TYP",
we have parsed "EXP :" and now expect a type.
expression_eof: TRUE EQUAL MINUS INTEGER UNPACK
##
## Ends in an error in state: 102.
##
## arith_expression -> arith_expression . PLUS arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . MINUS arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . TIMES arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression . EQUAL arith_expression [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
## arith_expression -> arith_expression EQUAL arith_expression . [ TIMES THEN RPAREN RANGLE PLUS MINUS IN EQUAL EOF ELSE COMMA COLON ]
##
## The known suffix of the stack is as follows:
## arith_expression EQUAL arith_expression
##