You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## USE lseparated_nonempty_list_inner(dot,type_id_str) DOT eols
425
+
##
426
+
## WARNING: This example involves spurious reductions.
427
+
## This implies that, although the LR(1) items shown above provide an
428
+
## accurate view of the past (what has been recognized so far), they
429
+
## may provide an INCOMPLETE view of the future (what was expected next).
430
+
## In state 3, spurious reduction of production nonempty_list(eol) -> EOL
431
+
## In state 6, spurious reduction of production eols -> nonempty_list(eol)
432
+
##
416
433
417
434
Expected bindings to use surrounded by `{}` or `*` to use all bindings.
418
435
419
-
program: MODULE UIDENT EOL FROM UIDENT USE LBRACE YIELD
436
+
program: MODULE UIDENT EOL USE UIDENT DOT LBRACE YIELD
420
437
##
421
438
## Ends in an error in state: 46.
422
439
##
@@ -434,7 +451,7 @@ program: MODULE UIDENT EOL FROM UIDENT USE LBRACE YIELD
434
451
435
452
Expected a lowercase identifier to use a value, the keyword `module` followed by an uppercase identifier to use a module, or the keyword `type` followed by an uppercase identifier to use a type.
436
453
437
-
program: MODULE UIDENT EOL FROM UIDENT USE LBRACE TYPE YIELD
454
+
program: MODULE UIDENT EOL USE UIDENT DOT LBRACE TYPE YIELD
438
455
##
439
456
## Ends in an error in state: 48.
440
457
##
@@ -443,7 +460,7 @@ program: MODULE UIDENT EOL FROM UIDENT USE LBRACE TYPE YIELD
443
460
## The known suffix of the stack is as follows:
444
461
## TYPE
445
462
##
446
-
program: MODULE UIDENT EOL FROM UIDENT USE LBRACE MODULE YIELD
463
+
program: MODULE UIDENT EOL USE UIDENT DOT LBRACE MODULE YIELD
447
464
##
448
465
## Ends in an error in state: 57.
449
466
##
@@ -455,7 +472,7 @@ program: MODULE UIDENT EOL FROM UIDENT USE LBRACE MODULE YIELD
455
472
456
473
Expected an uppercase type identifier.
457
474
458
-
program: MODULE UIDENT EOL FROM UIDENT USE LBRACE EXCEPTION YIELD
475
+
program: MODULE UIDENT EOL USE UIDENT DOT LBRACE EXCEPTION YIELD
0 commit comments