diff --git a/formatTest/typeCheckedTests/expected_output/basics.re b/formatTest/typeCheckedTests/expected_output/basics.re index 31cac0e41..8a32babaa 100644 --- a/formatTest/typeCheckedTests/expected_output/basics.re +++ b/formatTest/typeCheckedTests/expected_output/basics.re @@ -64,3 +64,15 @@ let expectedPrecendence = let expectedPrecendence = 1 \+ 1 \=== 1 \+ 1 && 1 \+ 1 !== 1 \+ 1; + +type postfixType = + | Px int; + +let postfix = 100Px; + +type postfixRecord = { + height: postfixType, + width: postfixType +}; + +let postfix2 = {height: 50Px, width: 30Px}; diff --git a/formatTest/typeCheckedTests/input/basics.re b/formatTest/typeCheckedTests/input/basics.re index 88800bf0e..edc3ac7dd 100644 --- a/formatTest/typeCheckedTests/input/basics.re +++ b/formatTest/typeCheckedTests/input/basics.re @@ -44,3 +44,17 @@ let (\===) = (===); let expectedPrecendence = 1 + 1 \=== 1 + 1 && 1 + 1 \!== 1 + 1; let expectedPrecendence = 1 \+ 1 \=== 1 \+ 1 && 1 \+ 1 \!== 1 \+ 1; + +type postfixType = Px int; + +let postfix = 100Px; + +type postfixRecord = { + height: postfixType, + width: postfixType +}; + +let postfix2 = { + height: 50Px, + width: 30Px +}; diff --git a/src/reason_lexer.mll b/src/reason_lexer.mll index 1235d8d21..aad39e39d 100644 --- a/src/reason_lexer.mll +++ b/src/reason_lexer.mll @@ -229,6 +229,20 @@ let remove_underscores s = | c -> Bytes.set b dst c; remove (src + 1) (dst + 1) in remove 0 0 +let splitCharsNumbers s = + let l = String.length s in + let chars = Bytes.create l in + let numbers = Bytes.create l in + let rec split src nmb_dst char_dst = + if src >= l then (Bytes.sub_string numbers 0 nmb_dst, Bytes.sub_string chars 0 char_dst) + else + match s.[src] with + | '0' .. '9' -> Bytes.set numbers nmb_dst s.[src]; split (src + 1) (nmb_dst + 1) char_dst + | 'A' .. 'z' -> Bytes.set chars char_dst s.[src]; split (src + 1) nmb_dst (char_dst + 1) + | _ -> assert false + in + split 0 0 0 + (* Update the current location with file name and line number. *) let update_loc lexbuf file line absolute chars = @@ -321,6 +335,8 @@ let float_literal = ('.' ['0'-'9' '_']* )? (['e' 'E'] ['+' '-']? ['0'-'9'] ['0'-'9' '_']*)? +let postfix_chars = decimal_literal uppercase identchar* + rule token = parse | "\\" newline { match !preprocessor with @@ -359,6 +375,12 @@ rule token = parse | "=?" (* Need special label extractor? *) { OPTIONAL_NO_DEFAULT } + | postfix_chars + { + let l = Lexing.lexeme lexbuf in + let (n, c) = splitCharsNumbers l in + POSTFIX (c, int_of_string n) + } | lowercase identchar * { let s = Lexing.lexeme lexbuf in try Hashtbl.find keyword_table s diff --git a/src/reason_parser.messages b/src/reason_parser.messages index ad64d2447..0a3402f9c 100644 --- a/src/reason_parser.messages +++ b/src/reason_parser.messages @@ -42,7 +42,7 @@ use_file: SHARP LIDENT SEMI WITH ## -## Ends in an error in state: 2876. +## Ends in an error in state: 2878. ## ## _use_file -> toplevel_directive SEMI . use_file [ # ] ## @@ -54,7 +54,7 @@ use_file: SHARP LIDENT SEMI WITH use_file: SHARP LIDENT TRUE WITH ## -## Ends in an error in state: 2875. +## Ends in an error in state: 2877. ## ## _use_file -> toplevel_directive . SEMI use_file [ # ] ## _use_file -> toplevel_directive . EOF [ # ] @@ -67,7 +67,7 @@ use_file: SHARP LIDENT TRUE WITH use_file: UIDENT RPAREN ## -## Ends in an error in state: 2878. +## Ends in an error in state: 2880. ## ## _use_file -> structure_item . SEMI use_file [ # ] ## _use_file -> structure_item . EOF [ # ] @@ -79,28 +79,28 @@ use_file: UIDENT RPAREN ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2867, spurious reduction of production post_item_attributes -> -## In state 2868, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 2869, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 2847, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 2833, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 2871, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 2848, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2869, spurious reduction of production post_item_attributes -> +## In state 2870, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 2871, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 2849, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 2835, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 2873, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 2850, spurious reduction of production structure_item -> mark_position_str(_structure_item) ## use_file: UIDENT SEMI WITH ## -## Ends in an error in state: 2879. +## Ends in an error in state: 2881. ## ## _use_file -> structure_item SEMI . use_file [ # ] ## @@ -112,7 +112,7 @@ use_file: UIDENT SEMI WITH use_file: WITH ## -## Ends in an error in state: 2872. +## Ends in an error in state: 2874. ## ## use_file' -> . use_file [ # ] ## @@ -124,7 +124,7 @@ use_file: WITH toplevel_phrase: SHARP UIDENT EOF ## -## Ends in an error in state: 2831. +## Ends in an error in state: 2833. ## ## _toplevel_phrase -> toplevel_directive . SEMI [ # ] ## @@ -135,14 +135,14 @@ toplevel_phrase: SHARP UIDENT EOF ## 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 2739, spurious reduction of production toplevel_directive -> SHARP ident +## In state 2741, spurious reduction of production toplevel_directive -> SHARP ident ## toplevel_phrase: SHARP UIDENT UIDENT DOT WITH ## -## Ends in an error in state: 936. +## Ends in an error in state: 938. ## ## mod_longident -> mod_longident DOT . UIDENT [ SEMI EOF DOT ] ## val_longident -> mod_longident DOT . val_ident [ UIDENT TRUE STRING STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER FLOAT FALSE EQUALGREATER EOF COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARBAR BAR BANG BACKQUOTE AND AMPERSAND AMPERAMPER ] @@ -155,7 +155,7 @@ toplevel_phrase: SHARP UIDENT UIDENT DOT WITH toplevel_phrase: SHARP UIDENT UIDENT WITH ## -## Ends in an error in state: 2745. +## Ends in an error in state: 2747. ## ## mod_longident -> mod_longident . DOT UIDENT [ SEMI EOF DOT ] ## toplevel_directive -> SHARP ident mod_longident . [ SEMI EOF ] @@ -169,7 +169,7 @@ toplevel_phrase: SHARP UIDENT UIDENT WITH toplevel_phrase: SHARP UIDENT WITH ## -## Ends in an error in state: 2739. +## Ends in an error in state: 2741. ## ## toplevel_directive -> SHARP ident . [ SEMI EOF ] ## toplevel_directive -> SHARP ident . STRING [ SEMI EOF ] @@ -187,7 +187,7 @@ toplevel_phrase: SHARP UIDENT WITH toplevel_phrase: SHARP WITH ## -## Ends in an error in state: 2738. +## Ends in an error in state: 2740. ## ## toplevel_directive -> SHARP . ident [ SEMI EOF ] ## toplevel_directive -> SHARP . ident STRING [ SEMI EOF ] @@ -205,7 +205,7 @@ toplevel_phrase: SHARP WITH toplevel_phrase: UIDENT RPAREN ## -## Ends in an error in state: 2834. +## Ends in an error in state: 2836. ## ## _toplevel_phrase -> structure_item . SEMI [ # ] ## @@ -216,28 +216,28 @@ toplevel_phrase: UIDENT RPAREN ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2867, spurious reduction of production post_item_attributes -> -## In state 2868, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 2869, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 2847, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 2833, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 2871, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 2848, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2869, spurious reduction of production post_item_attributes -> +## In state 2870, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 2871, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 2849, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 2835, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 2873, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 2850, spurious reduction of production structure_item -> mark_position_str(_structure_item) ## toplevel_phrase: WITH ## -## Ends in an error in state: 2701. +## Ends in an error in state: 2703. ## ## toplevel_phrase' -> . toplevel_phrase [ # ] ## @@ -249,7 +249,7 @@ toplevel_phrase: WITH parse_pattern: EXCEPTION WITH ## -## Ends in an error in state: 609. +## Ends in an error in state: 610. ## ## _pattern_without_or -> EXCEPTION . pattern_without_or [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## @@ -261,7 +261,7 @@ parse_pattern: EXCEPTION WITH parse_pattern: LAZY WITH ## -## Ends in an error in state: 603. +## Ends in an error in state: 604. ## ## _pattern_without_or -> LAZY . simple_pattern [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## @@ -273,7 +273,7 @@ parse_pattern: LAZY WITH parse_pattern: LBRACE LIDENT COLON UNDERSCORE SEMI ## -## Ends in an error in state: 687. +## Ends in an error in state: 688. ## ## _or_pattern -> pattern . BAR pattern [ error RBRACE COMMA BAR ] ## lbl_pattern -> label_longident COLON pattern . [ error RBRACE COMMA ] @@ -285,14 +285,14 @@ parse_pattern: LBRACE LIDENT COLON UNDERSCORE SEMI ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACE LIDENT COLON WITH ## -## Ends in an error in state: 515. +## Ends in an error in state: 516. ## ## lbl_pattern -> label_longident COLON . pattern [ error RBRACE COMMA ] ## @@ -304,7 +304,7 @@ parse_pattern: LBRACE LIDENT COLON WITH parse_pattern: LBRACE LIDENT COMMA UNDERSCORE COMMA WITH ## -## Ends in an error in state: 600. +## Ends in an error in state: 601. ## ## _simple_pattern_not_ident -> LBRACE lbl_pattern_list . RBRACE [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACE lbl_pattern_list . error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -317,7 +317,7 @@ parse_pattern: LBRACE LIDENT COMMA UNDERSCORE COMMA WITH parse_pattern: LBRACE LIDENT COMMA UNDERSCORE WITH ## -## Ends in an error in state: 510. +## Ends in an error in state: 511. ## ## lbl_pattern_list -> lbl_pattern COMMA UNDERSCORE . opt_comma [ error RBRACE ] ## @@ -329,7 +329,7 @@ parse_pattern: LBRACE LIDENT COMMA UNDERSCORE WITH parse_pattern: LBRACE LIDENT COMMA WITH ## -## Ends in an error in state: 509. +## Ends in an error in state: 510. ## ## lbl_pattern_list -> lbl_pattern COMMA . [ error RBRACE ] ## lbl_pattern_list -> lbl_pattern COMMA . UNDERSCORE opt_comma [ error RBRACE ] @@ -343,7 +343,7 @@ parse_pattern: LBRACE LIDENT COMMA WITH parse_pattern: LBRACE LIDENT WITH ## -## Ends in an error in state: 514. +## Ends in an error in state: 515. ## ## lbl_pattern -> label_longident . COLON pattern [ error RBRACE COMMA ] ## lbl_pattern -> label_longident . [ error RBRACE COMMA ] @@ -356,7 +356,7 @@ parse_pattern: LBRACE LIDENT WITH parse_pattern: LBRACE WITH ## -## Ends in an error in state: 599. +## Ends in an error in state: 600. ## ## _simple_pattern_not_ident -> LBRACE . lbl_pattern_list RBRACE [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACE . lbl_pattern_list error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -369,7 +369,7 @@ parse_pattern: LBRACE WITH parse_pattern: LBRACKET UNDERSCORE COMMA DOTDOTDOT UNDERSCORE RPAREN ## -## Ends in an error in state: 591. +## Ends in an error in state: 592. ## ## _or_pattern -> pattern . BAR pattern [ error SEMI RBRACKET BAR ] ## pattern_comma_list_extension -> pattern_comma_list COMMA DOTDOTDOT pattern . [ error SEMI RBRACKET ] @@ -381,14 +381,14 @@ parse_pattern: LBRACKET UNDERSCORE COMMA DOTDOTDOT UNDERSCORE RPAREN ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACKET UNDERSCORE COMMA DOTDOTDOT WITH ## -## Ends in an error in state: 590. +## Ends in an error in state: 591. ## ## pattern_comma_list_extension -> pattern_comma_list COMMA DOTDOTDOT . pattern [ error SEMI RBRACKET ] ## @@ -400,7 +400,7 @@ Expecting a valid list identifier parse_pattern: LBRACKET UNDERSCORE COMMA UNDERSCORE RPAREN ## -## Ends in an error in state: 597. +## Ends in an error in state: 598. ## ## _or_pattern -> pattern . BAR pattern [ error SEMI RBRACKET COMMA BAR ] ## pattern_comma_list -> pattern_comma_list COMMA pattern . [ COMMA ] @@ -413,14 +413,14 @@ parse_pattern: LBRACKET UNDERSCORE COMMA UNDERSCORE RPAREN ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACKET UNDERSCORE COMMA WITH ## -## Ends in an error in state: 589. +## Ends in an error in state: 590. ## ## pattern_comma_list -> pattern_comma_list COMMA . pattern [ COMMA ] ## pattern_comma_list_extension -> pattern_comma_list COMMA . DOTDOTDOT pattern [ error SEMI RBRACKET ] @@ -434,7 +434,7 @@ parse_pattern: LBRACKET UNDERSCORE COMMA WITH parse_pattern: LBRACKET UNDERSCORE RPAREN ## -## Ends in an error in state: 598. +## Ends in an error in state: 599. ## ## _or_pattern -> pattern . BAR pattern [ error SEMI RBRACKET COMMA BAR ] ## pattern_comma_list -> pattern . [ COMMA ] @@ -447,14 +447,14 @@ parse_pattern: LBRACKET UNDERSCORE RPAREN ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACKET UNDERSCORE SEMI RBRACE ## -## Ends in an error in state: 585. +## Ends in an error in state: 586. ## ## _simple_pattern_not_ident -> LBRACKET pattern_comma_list_extension opt_semi . RBRACKET [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKET pattern_comma_list_extension opt_semi . error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -467,7 +467,7 @@ parse_pattern: LBRACKET UNDERSCORE SEMI RBRACE parse_pattern: LBRACKET WITH ## -## Ends in an error in state: 581. +## Ends in an error in state: 582. ## ## _simple_pattern_not_ident -> LBRACKET . pattern_comma_list_extension opt_semi RBRACKET [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKET . pattern_comma_list_extension opt_semi error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -481,7 +481,7 @@ parse_pattern: LBRACKET WITH parse_pattern: LBRACKETBAR MINUS WITH ## -## Ends in an error in state: 474. +## Ends in an error in state: 475. ## ## signed_constant -> MINUS . INT [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE DOTDOT COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## signed_constant -> MINUS . FLOAT [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE DOTDOT COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -497,7 +497,7 @@ parse_pattern: LBRACKETBAR MINUS WITH parse_pattern: LBRACKETBAR PLUS WITH ## -## Ends in an error in state: 473. +## Ends in an error in state: 474. ## ## signed_constant -> PLUS . INT [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE DOTDOT COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## signed_constant -> PLUS . FLOAT [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE DOTDOT COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -513,7 +513,7 @@ parse_pattern: LBRACKETBAR PLUS WITH parse_pattern: LBRACKETBAR UNDERSCORE COMMA UNDERSCORE RPAREN ## -## Ends in an error in state: 695. +## Ends in an error in state: 696. ## ## _or_pattern -> pattern . BAR pattern [ error SEMI COMMA BARRBRACKET BAR ] ## pattern_comma_list -> pattern_comma_list COMMA pattern . [ error SEMI COMMA BARRBRACKET ] @@ -525,14 +525,14 @@ parse_pattern: LBRACKETBAR UNDERSCORE COMMA UNDERSCORE RPAREN ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACKETBAR UNDERSCORE COMMA WITH ## -## Ends in an error in state: 694. +## Ends in an error in state: 695. ## ## pattern_comma_list -> pattern_comma_list COMMA . pattern [ error SEMI COMMA BARRBRACKET ] ## @@ -544,7 +544,7 @@ parse_pattern: LBRACKETBAR UNDERSCORE COMMA WITH parse_pattern: LBRACKETBAR UNDERSCORE RPAREN ## -## Ends in an error in state: 699. +## Ends in an error in state: 700. ## ## _or_pattern -> pattern . BAR pattern [ error SEMI COMMA BARRBRACKET BAR ] ## pattern_comma_list -> pattern . [ error SEMI COMMA BARRBRACKET ] @@ -556,14 +556,14 @@ parse_pattern: LBRACKETBAR UNDERSCORE RPAREN ## 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 566, spurious reduction of production pattern -> pattern_without_or +## In state 567, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: LBRACKETBAR UNDERSCORE SEMI BARBAR ## -## Ends in an error in state: 710. +## Ends in an error in state: 711. ## ## _simple_pattern_not_ident -> LBRACKETBAR pattern_comma_list opt_semi . BARRBRACKET [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKETBAR pattern_comma_list opt_semi . error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -576,7 +576,7 @@ parse_pattern: LBRACKETBAR UNDERSCORE SEMI BARBAR parse_pattern: LBRACKETBAR WITH ## -## Ends in an error in state: 472. +## Ends in an error in state: 473. ## ## _simple_pattern_not_ident -> LBRACKETBAR . pattern_comma_list opt_semi BARRBRACKET [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKETBAR . BARRBRACKET [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -590,7 +590,7 @@ parse_pattern: LBRACKETBAR WITH parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA UNDERSCORE WITH ## -## Ends in an error in state: 2467. +## Ends in an error in state: 2469. ## ## _pattern_without_or -> pattern_without_or . AS val_ident [ error RPAREN LBRACKETAT COLONCOLON AS ] ## _pattern_without_or -> pattern_without_or . AS error [ error RPAREN LBRACKETAT COLONCOLON AS ] @@ -608,7 +608,7 @@ parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA UNDERSCORE WITH parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA WITH ## -## Ends in an error in state: 2466. +## Ends in an error in state: 2468. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN pattern_without_or COMMA . pattern_without_or RPAREN [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN pattern_without_or COMMA . pattern_without_or error [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] @@ -621,7 +621,7 @@ parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA WITH parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 2465. +## Ends in an error in state: 2467. ## ## _pattern_without_or -> pattern_without_or . AS val_ident [ LBRACKETAT COMMA COLONCOLON AS ] ## _pattern_without_or -> pattern_without_or . AS error [ LBRACKETAT COMMA COLONCOLON AS ] @@ -639,7 +639,7 @@ parse_pattern: LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE WITH parse_pattern: LPAREN COLONCOLON RPAREN LPAREN WITH ## -## Ends in an error in state: 2464. +## Ends in an error in state: 2466. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN . pattern_without_or COMMA pattern_without_or RPAREN [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN . pattern_without_or COMMA pattern_without_or error [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] @@ -652,7 +652,7 @@ parse_pattern: LPAREN COLONCOLON RPAREN LPAREN WITH parse_pattern: LPAREN COLONCOLON RPAREN WITH ## -## Ends in an error in state: 2463. +## Ends in an error in state: 2465. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN . LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN . LPAREN pattern_without_or COMMA pattern_without_or error [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] @@ -665,7 +665,7 @@ parse_pattern: LPAREN COLONCOLON RPAREN WITH parse_pattern: LPAREN COLONCOLON WITH ## -## Ends in an error in state: 2462. +## Ends in an error in state: 2464. ## ## _pattern_without_or -> LPAREN COLONCOLON . RPAREN LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON . RPAREN LPAREN pattern_without_or COMMA pattern_without_or error [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] @@ -678,7 +678,7 @@ parse_pattern: LPAREN COLONCOLON WITH parse_pattern: LPAREN EXCEPTION WITH ## -## Ends in an error in state: 530. +## Ends in an error in state: 531. ## ## _pattern_without_or -> EXCEPTION . pattern_without_or [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## @@ -690,7 +690,7 @@ parse_pattern: LPAREN EXCEPTION WITH parse_pattern: LPAREN LAZY WITH ## -## Ends in an error in state: 516. +## Ends in an error in state: 517. ## ## _pattern_without_or -> LAZY . simple_pattern [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## @@ -702,7 +702,7 @@ parse_pattern: LPAREN LAZY WITH parse_pattern: LPAREN LBRACE LIDENT COMMA UNDERSCORE COMMA WITH ## -## Ends in an error in state: 505. +## Ends in an error in state: 506. ## ## _simple_pattern_not_ident -> LBRACE lbl_pattern_list . RBRACE [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACE lbl_pattern_list . error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -715,7 +715,7 @@ parse_pattern: LPAREN LBRACE LIDENT COMMA UNDERSCORE COMMA WITH parse_pattern: LPAREN LBRACE WITH ## -## Ends in an error in state: 500. +## Ends in an error in state: 501. ## ## _simple_pattern_not_ident -> LBRACE . lbl_pattern_list RBRACE [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACE . lbl_pattern_list error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -728,7 +728,7 @@ parse_pattern: LPAREN LBRACE WITH parse_pattern: LPAREN LBRACKET UNDERSCORE SEMI RBRACE ## -## Ends in an error in state: 689. +## Ends in an error in state: 690. ## ## _simple_pattern_not_ident -> LBRACKET pattern_comma_list_extension opt_semi . RBRACKET [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKET pattern_comma_list_extension opt_semi . error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -741,7 +741,7 @@ parse_pattern: LPAREN LBRACKET UNDERSCORE SEMI RBRACE parse_pattern: LPAREN LBRACKET WITH ## -## Ends in an error in state: 498. +## Ends in an error in state: 499. ## ## _simple_pattern_not_ident -> LBRACKET . pattern_comma_list_extension opt_semi RBRACKET [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKET . pattern_comma_list_extension opt_semi error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -755,7 +755,7 @@ parse_pattern: LPAREN LBRACKET WITH parse_pattern: LPAREN LBRACKETBAR UNDERSCORE SEMI BARBAR ## -## Ends in an error in state: 696. +## Ends in an error in state: 697. ## ## _simple_pattern_not_ident -> LBRACKETBAR pattern_comma_list opt_semi . BARRBRACKET [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKETBAR pattern_comma_list opt_semi . error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -768,7 +768,7 @@ parse_pattern: LPAREN LBRACKETBAR UNDERSCORE SEMI BARBAR parse_pattern: LPAREN LBRACKETBAR WITH ## -## Ends in an error in state: 497. +## Ends in an error in state: 498. ## ## _simple_pattern_not_ident -> LBRACKETBAR . pattern_comma_list opt_semi BARRBRACKET [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LBRACKETBAR . BARRBRACKET [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -782,7 +782,7 @@ parse_pattern: LPAREN LBRACKETBAR WITH parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA UNDERSCORE WITH ## -## Ends in an error in state: 705. +## Ends in an error in state: 706. ## ## _pattern_without_or -> pattern_without_or . AS val_ident [ error RPAREN LBRACKETAT COLONCOLON AS ] ## _pattern_without_or -> pattern_without_or . AS error [ error RPAREN LBRACKETAT COLONCOLON AS ] @@ -800,7 +800,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA UNDERSCOR parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA WITH ## -## Ends in an error in state: 704. +## Ends in an error in state: 705. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN pattern_without_or COMMA . pattern_without_or RPAREN [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN pattern_without_or COMMA . pattern_without_or error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] @@ -813,7 +813,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE COMMA WITH parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 703. +## Ends in an error in state: 704. ## ## _pattern_without_or -> pattern_without_or . AS val_ident [ LBRACKETAT COMMA COLONCOLON AS ] ## _pattern_without_or -> pattern_without_or . AS error [ LBRACKETAT COMMA COLONCOLON AS ] @@ -831,7 +831,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN UNDERSCORE WITH parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN WITH ## -## Ends in an error in state: 702. +## Ends in an error in state: 703. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN . pattern_without_or COMMA pattern_without_or RPAREN [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN LPAREN . pattern_without_or COMMA pattern_without_or error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] @@ -844,7 +844,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON RPAREN LPAREN WITH parse_pattern: LPAREN LPAREN COLONCOLON RPAREN WITH ## -## Ends in an error in state: 701. +## Ends in an error in state: 702. ## ## _pattern_without_or -> LPAREN COLONCOLON RPAREN . LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON RPAREN . LPAREN pattern_without_or COMMA pattern_without_or error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] @@ -857,7 +857,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON RPAREN WITH parse_pattern: LPAREN LPAREN COLONCOLON WITH ## -## Ends in an error in state: 700. +## Ends in an error in state: 701. ## ## _pattern_without_or -> LPAREN COLONCOLON . RPAREN LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## _pattern_without_or -> LPAREN COLONCOLON . RPAREN LPAREN pattern_without_or COMMA pattern_without_or error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] @@ -870,7 +870,7 @@ parse_pattern: LPAREN LPAREN COLONCOLON WITH parse_pattern: LPAREN LPAREN MODULE UIDENT COLON WITH ## -## Ends in an error in state: 484. +## Ends in an error in state: 485. ## ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT COLON . package_type RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT COLON . package_type error [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -883,7 +883,7 @@ parse_pattern: LPAREN LPAREN MODULE UIDENT COLON WITH parse_pattern: LPAREN LPAREN MODULE UIDENT WITH ## -## Ends in an error in state: 482. +## Ends in an error in state: 483. ## ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT . RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT . COLON package_type RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -897,7 +897,7 @@ parse_pattern: LPAREN LPAREN MODULE UIDENT WITH parse_pattern: LPAREN LPAREN MODULE WITH ## -## Ends in an error in state: 481. +## Ends in an error in state: 482. ## ## _simple_pattern_not_ident -> LPAREN MODULE . UIDENT RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE . UIDENT COLON package_type RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -911,7 +911,7 @@ parse_pattern: LPAREN LPAREN MODULE WITH parse_pattern: LPAREN LPAREN UNDERSCORE COLON WITH ## -## Ends in an error in state: 681. +## Ends in an error in state: 682. ## ## _pattern_optional_constraint -> pattern COLON . core_type [ COMMA ] ## _simple_pattern_not_ident -> LPAREN pattern COLON . core_type RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -926,7 +926,7 @@ parse_pattern: LPAREN LPAREN UNDERSCORE COLON WITH parse_pattern: LPAREN LPAREN UNDERSCORE COMMA UNDERSCORE COLON LBRACE DOTDOT RBRACE WITH ## -## Ends in an error in state: 578. +## Ends in an error in state: 579. ## ## _simple_pattern_not_ident -> LPAREN pattern_two_or_more_comma_list . RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## pattern_two_or_more_comma_list -> pattern_two_or_more_comma_list . COMMA pattern_optional_constraint [ RPAREN COMMA ] @@ -938,23 +938,23 @@ parse_pattern: LPAREN LPAREN UNDERSCORE COMMA UNDERSCORE COLON LBRACE DOTDOT RBR ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 648, spurious reduction of production _pattern_optional_constraint -> pattern COLON core_type -## In state 655, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint -## In state 654, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) -## In state 645, spurious reduction of production pattern_two_or_more_comma_list -> pattern_optional_constraint COMMA pattern_optional_constraint +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 649, spurious reduction of production _pattern_optional_constraint -> pattern COLON core_type +## In state 656, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint +## In state 655, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) +## In state 646, spurious reduction of production pattern_two_or_more_comma_list -> pattern_optional_constraint COMMA pattern_optional_constraint ## parse_pattern: LPAREN LPAREN WITH ## -## Ends in an error in state: 480. +## Ends in an error in state: 481. ## ## _pattern_without_or -> LPAREN . COLONCOLON RPAREN LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## _pattern_without_or -> LPAREN . COLONCOLON RPAREN LPAREN pattern_without_or COMMA pattern_without_or error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] @@ -978,7 +978,7 @@ parse_pattern: LPAREN LPAREN WITH parse_pattern: LPAREN MINUS WITH ## -## Ends in an error in state: 494. +## Ends in an error in state: 495. ## ## operator -> MINUS . [ RPAREN ] ## signed_constant -> MINUS . INT [ error RPAREN LBRACKETAT DOTDOT COMMA COLONCOLON COLON BAR AS ] @@ -995,7 +995,7 @@ parse_pattern: LPAREN MINUS WITH parse_pattern: LPAREN MODULE UIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 246. +## Ends in an error in state: 247. ## ## package_type -> mty_longident . [ error RPAREN ] ## package_type -> mty_longident . WITH package_type_cstrs [ error RPAREN ] @@ -1007,15 +1007,15 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT SEMI ## 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 242, spurious reduction of production ident -> UIDENT -## In state 492, spurious reduction of production mty_longident -> ident +## In state 243, spurious reduction of production ident -> UIDENT +## In state 493, spurious reduction of production mty_longident -> ident ## parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WHILE ## -## Ends in an error in state: 242. +## Ends in an error in state: 243. ## ## ident -> UIDENT . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## mod_ext2 -> UIDENT . LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -1029,7 +1029,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WHILE parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRACE AND WITH ## -## Ends in an error in state: 2460. +## Ends in an error in state: 2462. ## ## package_type_cstrs -> package_type_cstr AND . package_type_cstrs [ error RPAREN ] ## @@ -1041,7 +1041,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL LBRACE D parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRACE WITH ## -## Ends in an error in state: 2459. +## Ends in an error in state: 2461. ## ## package_type_cstrs -> package_type_cstr . [ error RPAREN ] ## package_type_cstrs -> package_type_cstr . AND package_type_cstrs [ error RPAREN ] @@ -1053,20 +1053,20 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL LBRACE D ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 2457, spurious reduction of production package_type_cstr -> TYPE label_longident EQUAL core_type +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 2459, spurious reduction of production package_type_cstr -> TYPE label_longident EQUAL core_type ## parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL WITH ## -## Ends in an error in state: 250. +## Ends in an error in state: 251. ## ## package_type_cstr -> TYPE label_longident EQUAL . core_type [ error RPAREN AND ] ## @@ -1078,7 +1078,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT EQUAL WITH parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT WITH ## -## Ends in an error in state: 249. +## Ends in an error in state: 250. ## ## package_type_cstr -> TYPE label_longident . EQUAL core_type [ error RPAREN AND ] ## @@ -1090,7 +1090,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE LIDENT WITH parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE WITH ## -## Ends in an error in state: 248. +## Ends in an error in state: 249. ## ## package_type_cstr -> TYPE . label_longident EQUAL core_type [ error RPAREN AND ] ## @@ -1102,7 +1102,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH TYPE WITH parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH WITH ## -## Ends in an error in state: 247. +## Ends in an error in state: 248. ## ## package_type -> mty_longident WITH . package_type_cstrs [ error RPAREN ] ## @@ -1114,7 +1114,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON UIDENT WITH WITH parse_pattern: LPAREN MODULE UIDENT COLON WITH ## -## Ends in an error in state: 241. +## Ends in an error in state: 242. ## ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT COLON . package_type RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT COLON . package_type error [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1127,7 +1127,7 @@ parse_pattern: LPAREN MODULE UIDENT COLON WITH parse_pattern: LPAREN MODULE UIDENT WITH ## -## Ends in an error in state: 239. +## Ends in an error in state: 240. ## ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT . RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE UIDENT . COLON package_type RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1141,7 +1141,7 @@ parse_pattern: LPAREN MODULE UIDENT WITH parse_pattern: LPAREN MODULE WITH ## -## Ends in an error in state: 238. +## Ends in an error in state: 239. ## ## _simple_pattern_not_ident -> LPAREN MODULE . UIDENT RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN MODULE . UIDENT COLON package_type RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1155,7 +1155,7 @@ parse_pattern: LPAREN MODULE WITH parse_pattern: LPAREN PLUS WITH ## -## Ends in an error in state: 232. +## Ends in an error in state: 233. ## ## operator -> PLUS . [ RPAREN ] ## signed_constant -> PLUS . INT [ error RPAREN LBRACKETAT DOTDOT COMMA COLONCOLON COLON BAR AS ] @@ -1172,7 +1172,7 @@ parse_pattern: LPAREN PLUS WITH parse_pattern: LPAREN SHARP UIDENT DOT WITH ## -## Ends in an error in state: 227. +## Ends in an error in state: 228. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ DOT ] @@ -1186,7 +1186,7 @@ parse_pattern: LPAREN SHARP UIDENT DOT WITH parse_pattern: LPAREN SHARP UIDENT WITH ## -## Ends in an error in state: 226. +## Ends in an error in state: 227. ## ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident . DOT UIDENT [ DOT ] @@ -1206,7 +1206,7 @@ parse_pattern: LPAREN SHARP UIDENT WITH parse_pattern: LPAREN SHARP WITH ## -## Ends in an error in state: 223. +## Ends in an error in state: 224. ## ## _simple_pattern_not_ident -> SHARP . type_longident [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## @@ -1218,7 +1218,7 @@ parse_pattern: LPAREN SHARP WITH parse_pattern: LPAREN STRING DOTDOT WITH ## -## Ends in an error in state: 538. +## Ends in an error in state: 539. ## ## _simple_pattern_not_ident -> signed_constant DOTDOT . signed_constant [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## @@ -1230,7 +1230,7 @@ parse_pattern: LPAREN STRING DOTDOT WITH parse_pattern: LPAREN UIDENT DOT WITH ## -## Ends in an error in state: 547. +## Ends in an error in state: 548. ## ## mod_longident -> mod_longident DOT . UIDENT [ error WITH UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER EOF DOT COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS AND ] ## @@ -1242,7 +1242,7 @@ parse_pattern: LPAREN UIDENT DOT WITH parse_pattern: LPAREN UIDENT LPAREN WITH ## -## Ends in an error in state: 517. +## Ends in an error in state: 518. ## ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN . pattern_two_or_more_comma_list RPAREN [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -1264,7 +1264,7 @@ parse_pattern: LPAREN UIDENT LPAREN WITH parse_pattern: LPAREN UIDENT UNDERSCORE WITH ## -## Ends in an error in state: 557. +## Ends in an error in state: 558. ## ## _pattern_without_or -> constr_longident simple_pattern_list . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETAT COMMA COLONCOLON COLON BARRBRACKET BAR AS ] ## simple_pattern_list -> simple_pattern_list . simple_pattern [ error UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET RBRACE PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE COMMA COLONCOLON COLON CHAR BARRBRACKET BAR BACKQUOTE AS ] @@ -1277,7 +1277,7 @@ parse_pattern: LPAREN UIDENT UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE BAR WITH ## -## Ends in an error in state: 592. +## Ends in an error in state: 593. ## ## _or_pattern -> pattern BAR . pattern [ error SEMI RPAREN RBRACKET RBRACE COMMA COLON BARRBRACKET BAR ] ## @@ -1289,7 +1289,7 @@ parse_pattern: LPAREN UNDERSCORE BAR WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BACKQUOTE LIDENT GREATER ## -## Ends in an error in state: 316. +## Ends in an error in state: 317. ## ## _non_arrowed_simple_core_type -> LBRACKET tag_field . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## row_field -> tag_field . [ BAR ] @@ -1301,15 +1301,15 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BACKQUOTE LIDENT GREATER ## 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 270, spurious reduction of production attributes -> -## In state 305, spurious reduction of production tag_field -> name_tag attributes +## In state 271, spurious reduction of production attributes -> +## In state 306, spurious reduction of production tag_field -> name_tag attributes ## parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BAR UNDERSCORE WITH ## -## Ends in an error in state: 314. +## Ends in an error in state: 315. ## ## _non_arrowed_simple_core_type -> LBRACKET BAR row_field_list . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -1322,7 +1322,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BAR UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BAR WITH ## -## Ends in an error in state: 313. +## Ends in an error in state: 314. ## ## _non_arrowed_simple_core_type -> LBRACKET BAR . row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1334,7 +1334,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET BAR WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE BAR UNDERSCORE WITH ## -## Ends in an error in state: 320. +## Ends in an error in state: 321. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field BAR row_field_list . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -1347,7 +1347,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE BAR UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE BAR WITH ## -## Ends in an error in state: 319. +## Ends in an error in state: 320. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field BAR . row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1359,7 +1359,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE BAR WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE WITH ## -## Ends in an error in state: 318. +## Ends in an error in state: 319. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field . BAR row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1371,7 +1371,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKET WITH ## -## Ends in an error in state: 312. +## Ends in an error in state: 313. ## ## _non_arrowed_simple_core_type -> LBRACKET . tag_field RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> LBRACKET . BAR row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1385,7 +1385,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKET WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER BAR ASSERT ## -## Ends in an error in state: 309. +## Ends in an error in state: 310. ## ## _non_arrowed_simple_core_type -> LBRACKETGREATER opt_bar . row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1397,7 +1397,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER BAR ASSERT parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER UNDERSCORE WITH ## -## Ends in an error in state: 310. +## Ends in an error in state: 311. ## ## _non_arrowed_simple_core_type -> LBRACKETGREATER opt_bar row_field_list . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -1410,7 +1410,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER WITH ## -## Ends in an error in state: 307. +## Ends in an error in state: 308. ## ## _non_arrowed_simple_core_type -> LBRACKETGREATER . opt_bar row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> LBRACKETGREATER . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1423,7 +1423,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETGREATER WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS BAR ASSERT ## -## Ends in an error in state: 254. +## Ends in an error in state: 255. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar . row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar . row_field_list GREATER name_tag_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1436,7 +1436,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS BAR ASSERT parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE GREATER BACKQUOTE LIDENT WITH ## -## Ends in an error in state: 262. +## Ends in an error in state: 263. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list GREATER name_tag_list . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## name_tag_list -> name_tag_list . name_tag [ RBRACKET BACKQUOTE ] @@ -1449,7 +1449,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE GREATER BACKQUOTE parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE GREATER WITH ## -## Ends in an error in state: 261. +## Ends in an error in state: 262. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list GREATER . name_tag_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1461,7 +1461,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE GREATER WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE WITH ## -## Ends in an error in state: 259. +## Ends in an error in state: 260. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list . RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list . GREATER name_tag_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1475,7 +1475,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS UNDERSCORE WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS WITH ## -## Ends in an error in state: 253. +## Ends in an error in state: 254. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS . opt_bar row_field_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> LBRACKETLESS . opt_bar row_field_list GREATER name_tag_list RBRACKET [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1488,7 +1488,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LBRACKETLESS WITH parse_pattern: LPAREN UNDERSCORE COLON LBRACE DOTDOT WITH ## -## Ends in an error in state: 324. +## Ends in an error in state: 325. ## ## object_record_type -> LBRACE DOTDOT . RBRACE [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## object_record_type -> LBRACE DOTDOT . label_declarations RBRACE [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -1515,7 +1515,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LIDENT SHARP WITH parse_pattern: LPAREN UNDERSCORE COLON LIDENT UNDERSCORE WHILE ## -## Ends in an error in state: 352. +## Ends in an error in state: 353. ## ## _non_arrowed_non_simple_core_type -> type_longident non_arrowed_simple_core_type_list . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] @@ -1528,7 +1528,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LIDENT UNDERSCORE WHILE parse_pattern: LPAREN UNDERSCORE COLON LPAREN MODULE UIDENT COLONGREATER ## -## Ends in an error in state: 2576. +## Ends in an error in state: 2578. ## ## _non_arrowed_simple_core_type -> LPAREN MODULE package_type . RPAREN [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1540,7 +1540,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LPAREN MODULE UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -1548,7 +1548,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LPAREN MODULE UIDENT COLONGREATER parse_pattern: LPAREN UNDERSCORE COLON LPAREN MODULE WITH ## -## Ends in an error in state: 2575. +## Ends in an error in state: 2577. ## ## _non_arrowed_simple_core_type -> LPAREN MODULE . package_type RPAREN [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## @@ -1560,7 +1560,7 @@ parse_pattern: LPAREN UNDERSCORE COLON LPAREN MODULE WITH parse_pattern: LPAREN UNDERSCORE COLON LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 2578. +## Ends in an error in state: 2580. ## ## _non_arrowed_simple_core_type -> LPAREN core_type_comma_list . RPAREN [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## core_type_comma_list -> core_type_comma_list . COMMA core_type [ RPAREN COMMA ] @@ -1572,13 +1572,13 @@ parse_pattern: LPAREN UNDERSCORE COLON LPAREN UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1218, spurious reduction of production core_type_comma_list -> core_type +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1220, spurious reduction of production core_type_comma_list -> core_type ## @@ -1597,7 +1597,7 @@ parse_pattern: LPAREN UNDERSCORE COLON QUOTE WITH parse_pattern: LPAREN UNDERSCORE COLON SHARP LIDENT UNDERSCORE WHILE ## -## Ends in an error in state: 341. +## Ends in an error in state: 342. ## ## _non_arrowed_non_simple_core_type -> SHARP class_longident non_arrowed_simple_core_type_list . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] @@ -1610,7 +1610,7 @@ parse_pattern: LPAREN UNDERSCORE COLON SHARP LIDENT UNDERSCORE WHILE parse_pattern: LPAREN UNDERSCORE COLON SHARP WITH ## -## Ends in an error in state: 251. +## Ends in an error in state: 252. ## ## _non_arrowed_non_simple_core_type -> SHARP . class_longident non_arrowed_simple_core_type_list [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] ## _non_arrowed_simple_core_type -> SHARP . class_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] @@ -1623,7 +1623,7 @@ parse_pattern: LPAREN UNDERSCORE COLON SHARP WITH parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE AS QUOTE WITH ## -## Ends in an error in state: 670. +## Ends in an error in state: 671. ## ## _core_type -> core_type2 AS QUOTE . ident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AND ] ## @@ -1635,7 +1635,7 @@ parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE AS QUOTE WITH parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE AS WITH ## -## Ends in an error in state: 669. +## Ends in an error in state: 670. ## ## _core_type -> core_type2 AS . QUOTE ident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AND ] ## @@ -1647,7 +1647,7 @@ parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE AS WITH parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 665. +## Ends in an error in state: 666. ## ## _core_type2 -> core_type2 EQUALGREATER . core_type2 [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BARRBRACKET BAR AS AND ] ## @@ -1659,7 +1659,7 @@ parse_pattern: LPAREN UNDERSCORE COLON UNDERSCORE EQUALGREATER WITH parse_pattern: LPAREN UNDERSCORE COLON WITH ## -## Ends in an error in state: 659. +## Ends in an error in state: 660. ## ## _pattern_optional_constraint -> pattern COLON . core_type [ COMMA ] ## _simple_pattern_not_ident -> LPAREN pattern COLON . core_type RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1674,7 +1674,7 @@ parse_pattern: LPAREN UNDERSCORE COLON WITH parse_pattern: LPAREN UNDERSCORE COMMA CHAR COMMA WITH ## -## Ends in an error in state: 580. +## Ends in an error in state: 581. ## ## pattern_two_or_more_comma_list -> pattern_two_or_more_comma_list COMMA . pattern_optional_constraint [ RPAREN COMMA ] ## @@ -1686,7 +1686,7 @@ parse_pattern: LPAREN UNDERSCORE COMMA CHAR COMMA WITH parse_pattern: LPAREN UNDERSCORE COMMA UNDERSCORE COLON WITH ## -## Ends in an error in state: 647. +## Ends in an error in state: 648. ## ## _pattern_optional_constraint -> pattern COLON . core_type [ RPAREN COMMA ] ## @@ -1698,7 +1698,7 @@ parse_pattern: LPAREN UNDERSCORE COMMA UNDERSCORE COLON WITH parse_pattern: LPAREN UNDERSCORE COMMA UNDERSCORE WHEN ## -## Ends in an error in state: 605. +## Ends in an error in state: 606. ## ## _simple_pattern_not_ident -> LPAREN pattern_two_or_more_comma_list . RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## pattern_two_or_more_comma_list -> pattern_two_or_more_comma_list . COMMA pattern_optional_constraint [ RPAREN COMMA ] @@ -1710,18 +1710,18 @@ parse_pattern: LPAREN UNDERSCORE COMMA UNDERSCORE WHEN ## 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 635, spurious reduction of production pattern -> pattern_without_or -## In state 646, spurious reduction of production _pattern_optional_constraint -> pattern -## In state 655, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint -## In state 654, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) -## In state 645, spurious reduction of production pattern_two_or_more_comma_list -> pattern_optional_constraint COMMA pattern_optional_constraint +## In state 636, spurious reduction of production pattern -> pattern_without_or +## In state 647, spurious reduction of production _pattern_optional_constraint -> pattern +## In state 656, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint +## In state 655, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) +## In state 646, spurious reduction of production pattern_two_or_more_comma_list -> pattern_optional_constraint COMMA pattern_optional_constraint ## parse_pattern: LPAREN UNDERSCORE COMMA WITH ## -## Ends in an error in state: 608. +## Ends in an error in state: 609. ## ## pattern_two_or_more_comma_list -> pattern_optional_constraint COMMA . pattern_optional_constraint [ RPAREN COMMA ] ## @@ -1733,7 +1733,7 @@ parse_pattern: LPAREN UNDERSCORE COMMA WITH parse_pattern: LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 607. +## Ends in an error in state: 608. ## ## pattern_two_or_more_comma_list -> pattern_optional_constraint . COMMA pattern_optional_constraint [ RPAREN COMMA ] ## @@ -1744,17 +1744,17 @@ parse_pattern: LPAREN UNDERSCORE WITH ## 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 566, spurious reduction of production pattern -> pattern_without_or -## In state 656, spurious reduction of production _pattern_optional_constraint -> pattern -## In state 655, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint -## In state 654, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) +## In state 567, spurious reduction of production pattern -> pattern_without_or +## In state 657, spurious reduction of production _pattern_optional_constraint -> pattern +## In state 656, spurious reduction of production mark_position_pat(_pattern_optional_constraint) -> _pattern_optional_constraint +## In state 655, spurious reduction of production pattern_optional_constraint -> mark_position_pat(_pattern_optional_constraint) ## parse_pattern: LPAREN WITH ## -## Ends in an error in state: 221. +## Ends in an error in state: 222. ## ## _pattern_without_or -> LPAREN . COLONCOLON RPAREN LPAREN pattern_without_or COMMA pattern_without_or RPAREN [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## _pattern_without_or -> LPAREN . COLONCOLON RPAREN LPAREN pattern_without_or COMMA pattern_without_or error [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] @@ -1778,7 +1778,7 @@ parse_pattern: LPAREN WITH parse_pattern: MINUS WITH ## -## Ends in an error in state: 215. +## Ends in an error in state: 216. ## ## signed_constant -> MINUS . INT [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF DOTDOT COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## signed_constant -> MINUS . FLOAT [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF DOTDOT COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1794,7 +1794,7 @@ parse_pattern: MINUS WITH parse_pattern: PLUS WITH ## -## Ends in an error in state: 209. +## Ends in an error in state: 210. ## ## signed_constant -> PLUS . INT [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF DOTDOT COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## signed_constant -> PLUS . FLOAT [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF DOTDOT COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1810,7 +1810,7 @@ parse_pattern: PLUS WITH parse_pattern: SHARP WITH ## -## Ends in an error in state: 204. +## Ends in an error in state: 205. ## ## _simple_pattern_not_ident -> SHARP . type_longident [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## @@ -1822,7 +1822,7 @@ parse_pattern: SHARP WITH parse_pattern: STRING DOTDOT WITH ## -## Ends in an error in state: 614. +## Ends in an error in state: 615. ## ## _simple_pattern_not_ident -> signed_constant DOTDOT . signed_constant [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## @@ -1834,7 +1834,7 @@ parse_pattern: STRING DOTDOT WITH parse_pattern: UIDENT DOT WITH ## -## Ends in an error in state: 430. +## Ends in an error in state: 431. ## ## mod_longident -> mod_longident DOT . UIDENT [ WITH WHEN UNDERSCORE UIDENT TRUE STRING SLASHGREATER SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN GREATER FLOAT FALSE EQUALGREATER EQUAL EOF DOT COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS AND ] ## @@ -1846,7 +1846,7 @@ parse_pattern: UIDENT DOT WITH parse_pattern: UIDENT LPAREN WITH ## -## Ends in an error in state: 604. +## Ends in an error in state: 605. ## ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] ## _simple_pattern_not_ident -> LPAREN . pattern_two_or_more_comma_list RPAREN [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS OPTIONAL_NO_DEFAULT NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLONLIDENT COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1868,7 +1868,7 @@ parse_pattern: UIDENT LPAREN WITH parse_pattern: UIDENT UNDERSCORE WITH ## -## Ends in an error in state: 631. +## Ends in an error in state: 632. ## ## _pattern_without_or -> constr_longident simple_pattern_list . [ WHEN SEMI RPAREN RBRACKET LBRACKETAT IN EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON BAR AS ] ## simple_pattern_list -> simple_pattern_list . simple_pattern [ WHEN UNDERSCORE UIDENT TRUE STRING SHARP SEMI RPAREN RBRACKET PLUS NATIVEINT MINUS LPAREN LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKETAT LBRACKET LBRACE INT64 INT32 INT IN FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONCOLON COLON CHAR BAR BACKQUOTE AS ] @@ -1881,7 +1881,7 @@ parse_pattern: UIDENT UNDERSCORE WITH parse_pattern: UNDERSCORE BAR WITH ## -## Ends in an error in state: 649. +## Ends in an error in state: 650. ## ## _or_pattern -> pattern BAR . pattern [ WHEN SEMI RPAREN RBRACKET IN EQUALGREATER EQUAL EOF COMMA COLON BAR ] ## @@ -1893,7 +1893,7 @@ parse_pattern: UNDERSCORE BAR WITH parse_pattern: UNDERSCORE WITH ## -## Ends in an error in state: 2698. +## Ends in an error in state: 2700. ## ## _or_pattern -> pattern . BAR pattern [ EOF BAR ] ## parse_pattern -> pattern . EOF [ # ] @@ -1905,14 +1905,14 @@ parse_pattern: UNDERSCORE WITH ## 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 635, spurious reduction of production pattern -> pattern_without_or +## In state 636, spurious reduction of production pattern -> pattern_without_or ## parse_pattern: WITH ## -## Ends in an error in state: 2697. +## Ends in an error in state: 2699. ## ## parse_pattern' -> . parse_pattern [ # ] ## @@ -1924,7 +1924,7 @@ parse_pattern: WITH parse_expression: UIDENT SEMI ## -## Ends in an error in state: 2695. +## Ends in an error in state: 2697. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -1959,21 +1959,21 @@ parse_expression: UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## parse_expression: WITH ## -## Ends in an error in state: 2693. +## Ends in an error in state: 2695. ## ## parse_expression' -> . parse_expression [ # ] ## @@ -1985,7 +1985,7 @@ parse_expression: WITH parse_core_type: LBRACKET BACKQUOTE UIDENT AMPERSAND WITH ## -## Ends in an error in state: 274. +## Ends in an error in state: 275. ## ## tag_field -> name_tag option(OF) opt_ampersand . amper_type_list attributes [ RBRACKET GREATER BAR ] ## @@ -1997,7 +1997,7 @@ parse_core_type: LBRACKET BACKQUOTE UIDENT AMPERSAND WITH parse_core_type: LBRACKET BACKQUOTE UIDENT UNDERSCORE AMPERSAND WITH ## -## Ends in an error in state: 299. +## Ends in an error in state: 300. ## ## amper_type_list -> amper_type_list AMPERSAND . core_type [ RBRACKET LBRACKETAT GREATER BAR AMPERSAND ] ## @@ -2009,7 +2009,7 @@ parse_core_type: LBRACKET BACKQUOTE UIDENT UNDERSCORE AMPERSAND WITH parse_core_type: LBRACKET BACKQUOTE UIDENT WITH ## -## Ends in an error in state: 2550. +## Ends in an error in state: 2552. ## ## _non_arrowed_simple_core_type -> LBRACKET tag_field . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## row_field -> tag_field . [ BAR ] @@ -2021,15 +2021,15 @@ parse_core_type: LBRACKET BACKQUOTE UIDENT WITH ## 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 270, spurious reduction of production attributes -> -## In state 305, spurious reduction of production tag_field -> name_tag attributes +## In state 271, spurious reduction of production attributes -> +## In state 306, spurious reduction of production tag_field -> name_tag attributes ## parse_core_type: LBRACKET BAR UNDERSCORE WITH ## -## Ends in an error in state: 2548. +## Ends in an error in state: 2550. ## ## _non_arrowed_simple_core_type -> LBRACKET BAR row_field_list . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -2042,7 +2042,7 @@ parse_core_type: LBRACKET BAR UNDERSCORE WITH parse_core_type: LBRACKET BAR WITH ## -## Ends in an error in state: 2547. +## Ends in an error in state: 2549. ## ## _non_arrowed_simple_core_type -> LBRACKET BAR . row_field_list RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## @@ -2054,7 +2054,7 @@ parse_core_type: LBRACKET BAR WITH parse_core_type: LBRACKET UNDERSCORE BAR UNDERSCORE WITH ## -## Ends in an error in state: 2554. +## Ends in an error in state: 2556. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field BAR row_field_list . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -2067,7 +2067,7 @@ parse_core_type: LBRACKET UNDERSCORE BAR UNDERSCORE WITH parse_core_type: LBRACKET UNDERSCORE BAR WITH ## -## Ends in an error in state: 2553. +## Ends in an error in state: 2555. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field BAR . row_field_list RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## @@ -2079,7 +2079,7 @@ parse_core_type: LBRACKET UNDERSCORE BAR WITH parse_core_type: LBRACKET UNDERSCORE WITH ## -## Ends in an error in state: 2552. +## Ends in an error in state: 2554. ## ## _non_arrowed_simple_core_type -> LBRACKET row_field . BAR row_field_list RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## @@ -2117,7 +2117,7 @@ parse_core_type: LBRACKETGREATER BAR ASSERT parse_core_type: LBRACKETGREATER UNDERSCORE WITH ## -## Ends in an error in state: 2556. +## Ends in an error in state: 2558. ## ## _non_arrowed_simple_core_type -> LBRACKETGREATER opt_bar row_field_list . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## row_field_list -> row_field_list . BAR row_field [ RBRACKET BAR ] @@ -2156,7 +2156,7 @@ parse_core_type: LBRACKETLESS BAR ASSERT parse_core_type: LBRACKETLESS UNDERSCORE BAR WITH ## -## Ends in an error in state: 266. +## Ends in an error in state: 267. ## ## row_field_list -> row_field_list BAR . row_field [ RBRACKET GREATER BAR ] ## @@ -2168,7 +2168,7 @@ parse_core_type: LBRACKETLESS UNDERSCORE BAR WITH parse_core_type: LBRACKETLESS UNDERSCORE GREATER BACKQUOTE LIDENT WITH ## -## Ends in an error in state: 2561. +## Ends in an error in state: 2563. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list GREATER name_tag_list . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## name_tag_list -> name_tag_list . name_tag [ RBRACKET BACKQUOTE ] @@ -2181,7 +2181,7 @@ parse_core_type: LBRACKETLESS UNDERSCORE GREATER BACKQUOTE LIDENT WITH parse_core_type: LBRACKETLESS UNDERSCORE GREATER WITH ## -## Ends in an error in state: 2560. +## Ends in an error in state: 2562. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list GREATER . name_tag_list RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## @@ -2193,7 +2193,7 @@ parse_core_type: LBRACKETLESS UNDERSCORE GREATER WITH parse_core_type: LBRACKETLESS UNDERSCORE WITH ## -## Ends in an error in state: 2558. +## Ends in an error in state: 2560. ## ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list . RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## _non_arrowed_simple_core_type -> LBRACKETLESS opt_bar row_field_list . GREATER name_tag_list RBRACKET [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] @@ -2233,7 +2233,7 @@ parse_core_type: LBRACE DOTDOT WITH parse_core_type: LBRACE LIDENT COLON LBRACE DOTDOT RBRACE COMMA WITH ## -## Ends in an error in state: 336. +## Ends in an error in state: 337. ## ## label_declarations -> label_declarations COMMA . label_declaration [ RBRACE COMMA ] ## opt_comma -> COMMA . [ RBRACE ] @@ -2246,7 +2246,7 @@ parse_core_type: LBRACE LIDENT COLON LBRACE DOTDOT RBRACE COMMA WITH parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT DOT WITH ## -## Ends in an error in state: 1596. +## Ends in an error in state: 1598. ## ## _poly_type -> typevar_list DOT . core_type [ RBRACE LBRACKETAT EQUAL COMMA ] ## @@ -2258,7 +2258,7 @@ parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT DOT WITH parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT QUOTE LIDENT WITH ## -## Ends in an error in state: 1595. +## Ends in an error in state: 1597. ## ## _poly_type -> typevar_list . DOT core_type [ RBRACE LBRACKETAT EQUAL COMMA ] ## typevar_list -> typevar_list . QUOTE ident [ QUOTE DOT ] @@ -2271,7 +2271,7 @@ parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT QUOTE LIDENT WITH parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT QUOTE WITH ## -## Ends in an error in state: 1398. +## Ends in an error in state: 1400. ## ## typevar_list -> typevar_list QUOTE . ident [ QUOTE DOT ] ## @@ -2283,7 +2283,7 @@ parse_core_type: LBRACE LIDENT COLON QUOTE UIDENT QUOTE WITH parse_core_type: LBRACE LIDENT COLON QUOTE WITH ## -## Ends in an error in state: 1494. +## Ends in an error in state: 1496. ## ## _non_arrowed_simple_core_type -> QUOTE . ident [ RBRACE LBRACKETAT EQUALGREATER EQUAL COMMA COLONGREATER AS ] ## typevar_list -> QUOTE . ident [ QUOTE DOT ] @@ -2296,7 +2296,7 @@ parse_core_type: LBRACE LIDENT COLON QUOTE WITH parse_core_type: LBRACE LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 2544. +## Ends in an error in state: 2546. ## ## label_declarations -> label_declarations . COMMA label_declaration [ RBRACE COMMA ] ## object_record_type -> LBRACE label_declarations . opt_comma RBRACE [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] @@ -2308,18 +2308,18 @@ parse_core_type: LBRACE LIDENT COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1602, spurious reduction of production _poly_type -> core_type -## In state 1603, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type -## In state 1601, spurious reduction of production poly_type -> mark_position_typ(_poly_type) -## In state 2536, spurious reduction of production attributes -> -## In state 2537, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes -## In state 330, spurious reduction of production label_declarations -> label_declaration +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1604, spurious reduction of production _poly_type -> core_type +## In state 1605, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type +## In state 1603, spurious reduction of production poly_type -> mark_position_typ(_poly_type) +## In state 2538, spurious reduction of production attributes -> +## In state 2539, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes +## In state 331, spurious reduction of production label_declarations -> label_declaration ## @@ -2355,7 +2355,7 @@ parse_core_type: LIDENT SHARP WITH parse_core_type: LIDENT UNDERSCORE WHILE ## -## Ends in an error in state: 276. +## Ends in an error in state: 277. ## ## _non_arrowed_non_simple_core_type -> type_longident non_arrowed_simple_core_type_list . [ WITH SEMI RPAREN RBRACKET RBRACE QUESTION LBRACKETATAT LBRACKETAT GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AS AND AMPERSAND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AS AND AMPERSAND ] @@ -2380,7 +2380,7 @@ parse_core_type: LPAREN MODULE UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -2401,14 +2401,14 @@ parse_core_type: LPAREN MODULE UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## parse_core_type: LPAREN MODULE UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRACE AND WITH ## -## Ends in an error in state: 2572. +## Ends in an error in state: 2574. ## ## package_type_cstrs -> package_type_cstr AND . package_type_cstrs [ RPAREN COLONGREATER ] ## @@ -2420,7 +2420,7 @@ parse_core_type: LPAREN MODULE UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRAC parse_core_type: LPAREN MODULE UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRACE WITH ## -## Ends in an error in state: 2571. +## Ends in an error in state: 2573. ## ## package_type_cstrs -> package_type_cstr . [ RPAREN COLONGREATER ] ## package_type_cstrs -> package_type_cstr . AND package_type_cstrs [ RPAREN COLONGREATER ] @@ -2432,13 +2432,13 @@ parse_core_type: LPAREN MODULE UIDENT WITH TYPE LIDENT EQUAL LBRACE DOTDOT RBRAC ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 2569, spurious reduction of production package_type_cstr -> TYPE label_longident EQUAL core_type +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 2571, spurious reduction of production package_type_cstr -> TYPE label_longident EQUAL core_type ## @@ -2505,7 +2505,7 @@ parse_core_type: LPAREN MODULE WITH parse_core_type: LPAREN UNDERSCORE COMMA WITH ## -## Ends in an error in state: 1216. +## Ends in an error in state: 1218. ## ## core_type_comma_list -> core_type_comma_list COMMA . core_type [ RPAREN COMMA ] ## @@ -2517,7 +2517,7 @@ parse_core_type: LPAREN UNDERSCORE COMMA WITH parse_core_type: LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 1214. +## Ends in an error in state: 1216. ## ## _non_arrowed_simple_core_type -> LPAREN core_type_comma_list . RPAREN [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BAR AS AND AMPERSAND ] ## core_type_comma_list -> core_type_comma_list . COMMA core_type [ RPAREN COMMA ] @@ -2529,13 +2529,13 @@ parse_core_type: LPAREN UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1218, spurious reduction of production core_type_comma_list -> core_type +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1220, spurious reduction of production core_type_comma_list -> core_type ## Expecting one of the following: @@ -2556,7 +2556,7 @@ parse_core_type: QUOTE WITH parse_core_type: SHARP LIDENT UNDERSCORE WHILE ## -## Ends in an error in state: 2574. +## Ends in an error in state: 2576. ## ## _non_arrowed_non_simple_core_type -> SHARP class_longident non_arrowed_simple_core_type_list . [ WITH SEMI RPAREN RBRACKET RBRACE QUESTION LBRACKETATAT LBRACKETAT GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AS AND AMPERSAND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AS AND AMPERSAND ] @@ -2608,7 +2608,7 @@ parse_core_type: SHARP WITH parse_core_type: UIDENT DOT WITH ## -## Ends in an error in state: 207. +## Ends in an error in state: 208. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ RPAREN LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ RPAREN DOT ] @@ -2667,7 +2667,7 @@ parse_core_type: UIDENT LPAREN WITH parse_core_type: UIDENT WITH ## -## Ends in an error in state: 206. +## Ends in an error in state: 207. ## ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident . DOT UIDENT [ DOT ] @@ -2687,7 +2687,7 @@ parse_core_type: UIDENT WITH parse_core_type: UNDERSCORE AS QUOTE WITH ## -## Ends in an error in state: 295. +## Ends in an error in state: 296. ## ## _core_type -> core_type2 AS QUOTE . ident [ WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AND AMPERSAND ] ## @@ -2699,7 +2699,7 @@ parse_core_type: UNDERSCORE AS QUOTE WITH parse_core_type: UNDERSCORE AS WITH ## -## Ends in an error in state: 294. +## Ends in an error in state: 295. ## ## _core_type -> core_type2 AS . QUOTE ident [ WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AND AMPERSAND ] ## @@ -2711,7 +2711,7 @@ parse_core_type: UNDERSCORE AS WITH parse_core_type: UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 290. +## Ends in an error in state: 291. ## ## _core_type2 -> core_type2 EQUALGREATER . core_type2 [ WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER BAR AS AND AMPERSAND ] ## @@ -2723,7 +2723,7 @@ parse_core_type: UNDERSCORE EQUALGREATER WITH parse_core_type: UNDERSCORE WITH ## -## Ends in an error in state: 2691. +## Ends in an error in state: 2693. ## ## parse_core_type -> core_type . EOF [ # ] ## @@ -2734,19 +2734,19 @@ parse_core_type: UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## parse_core_type: WITH ## -## Ends in an error in state: 2689. +## Ends in an error in state: 2691. ## ## parse_core_type' -> . parse_core_type [ # ] ## @@ -2758,7 +2758,7 @@ parse_core_type: WITH interface: CLASS LIDENT COLON NEW LIDENT AND WITH ## -## Ends in an error in state: 2021. +## Ends in an error in state: 2023. ## ## and_class_description -> AND . class_description_details post_item_attributes [ SEMI AND ] ## @@ -2770,7 +2770,7 @@ interface: CLASS LIDENT COLON NEW LIDENT AND WITH interface: CLASS LIDENT COLON NEW LIDENT RPAREN ## -## Ends in an error in state: 2020. +## Ends in an error in state: 2022. ## ## _signature_item -> many_class_descriptions . [ SEMI ] ## many_class_descriptions -> many_class_descriptions . and_class_description [ SEMI AND ] @@ -2782,22 +2782,22 @@ interface: CLASS LIDENT COLON NEW LIDENT RPAREN ## 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 1686, spurious reduction of production _class_instance_type -> clty_longident -## In state 1690, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1684, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) -## In state 1688, spurious reduction of production _class_constructor_type -> NEW class_instance_type -## In state 1699, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type -## In state 1697, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) -## In state 1967, spurious reduction of production class_description_details -> virtual_flag LIDENT class_type_parameters COLON class_constructor_type -## In state 1968, spurious reduction of production post_item_attributes -> -## In state 1969, spurious reduction of production many_class_descriptions -> CLASS class_description_details post_item_attributes +## In state 1688, spurious reduction of production _class_instance_type -> clty_longident +## In state 1692, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1686, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1690, spurious reduction of production _class_constructor_type -> NEW class_instance_type +## In state 1701, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type +## In state 1699, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) +## In state 1969, spurious reduction of production class_description_details -> virtual_flag LIDENT class_type_parameters COLON class_constructor_type +## In state 1970, spurious reduction of production post_item_attributes -> +## In state 1971, spurious reduction of production many_class_descriptions -> CLASS class_description_details post_item_attributes ## interface: CLASS LIDENT COLON WITH ## -## Ends in an error in state: 1966. +## Ends in an error in state: 1968. ## ## class_description_details -> virtual_flag LIDENT class_type_parameters COLON . class_constructor_type [ SEMI LBRACKETATAT AND ] ## @@ -2809,7 +2809,7 @@ interface: CLASS LIDENT COLON WITH interface: CLASS LIDENT PLUS WITH ## -## Ends in an error in state: 1443. +## Ends in an error in state: 1445. ## ## type_parameter -> type_variance . type_variable [ UNDERSCORE UIDENT TRUE STRING SHARP QUOTE PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUAL COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## @@ -2821,7 +2821,7 @@ interface: CLASS LIDENT PLUS WITH interface: CLASS LIDENT WITH ## -## Ends in an error in state: 1965. +## Ends in an error in state: 1967. ## ## class_description_details -> virtual_flag LIDENT class_type_parameters . COLON class_constructor_type [ SEMI LBRACKETATAT AND ] ## class_type_parameters -> class_type_parameters . type_parameter [ QUOTE PLUS MINUS COLON ] @@ -2834,7 +2834,7 @@ interface: CLASS LIDENT WITH interface: CLASS VIRTUAL LET ## -## Ends in an error in state: 1963. +## Ends in an error in state: 1965. ## ## class_description_details -> virtual_flag . LIDENT class_type_parameters COLON class_constructor_type [ SEMI LBRACKETATAT AND ] ## @@ -2846,7 +2846,7 @@ interface: CLASS VIRTUAL LET interface: CLASS WITH ## -## Ends in an error in state: 1954. +## Ends in an error in state: 1956. ## ## many_class_descriptions -> CLASS . class_description_details post_item_attributes [ SEMI AND ] ## many_class_type_declarations -> CLASS . TYPE class_type_declaration_details post_item_attributes [ SEMI AND ] @@ -2859,7 +2859,7 @@ interface: CLASS WITH interface: EXCEPTION UIDENT WITH ## -## Ends in an error in state: 1936. +## Ends in an error in state: 1938. ## ## extension_constructor_declaration -> UIDENT . generalized_constructor_arguments attributes [ SEMI LBRACKETATAT BAR ] ## @@ -2871,7 +2871,7 @@ interface: EXCEPTION UIDENT WITH interface: EXCEPTION WITH ## -## Ends in an error in state: 1935. +## Ends in an error in state: 1937. ## ## sig_exception_declaration -> EXCEPTION . extension_constructor_declaration post_item_attributes [ SEMI ] ## @@ -2883,7 +2883,7 @@ interface: EXCEPTION WITH interface: EXTERNAL LIDENT COLON UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1930. +## Ends in an error in state: 1932. ## ## _signature_item -> EXTERNAL val_ident COLON core_type EQUAL . primitive_declaration post_item_attributes [ SEMI ] ## @@ -2895,7 +2895,7 @@ interface: EXTERNAL LIDENT COLON UNDERSCORE EQUAL WITH interface: EXTERNAL LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 1929. +## Ends in an error in state: 1931. ## ## _signature_item -> EXTERNAL val_ident COLON core_type . EQUAL primitive_declaration post_item_attributes [ SEMI ] ## @@ -2906,19 +2906,19 @@ interface: EXTERNAL LIDENT COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## interface: EXTERNAL LIDENT COLON WITH ## -## Ends in an error in state: 1928. +## Ends in an error in state: 1930. ## ## _signature_item -> EXTERNAL val_ident COLON . core_type EQUAL primitive_declaration post_item_attributes [ SEMI ] ## @@ -2930,7 +2930,7 @@ interface: EXTERNAL LIDENT COLON WITH interface: EXTERNAL LIDENT WITH ## -## Ends in an error in state: 1927. +## Ends in an error in state: 1929. ## ## _signature_item -> EXTERNAL val_ident . COLON core_type EQUAL primitive_declaration post_item_attributes [ SEMI ] ## @@ -2942,7 +2942,7 @@ interface: EXTERNAL LIDENT WITH interface: EXTERNAL WITH ## -## Ends in an error in state: 1926. +## Ends in an error in state: 1928. ## ## _signature_item -> EXTERNAL . val_ident COLON core_type EQUAL primitive_declaration post_item_attributes [ SEMI ] ## @@ -2954,7 +2954,7 @@ interface: EXTERNAL WITH interface: INCLUDE LBRACE OPEN UIDENT WITH ## -## Ends in an error in state: 1970. +## Ends in an error in state: 1972. ## ## signature -> signature_item . SEMI signature [ error RBRACE ] ## @@ -2965,18 +2965,18 @@ interface: INCLUDE LBRACE OPEN UIDENT WITH ## 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 1811, spurious reduction of production post_item_attributes -> -## In state 1812, spurious reduction of production open_statement -> OPEN override_flag mod_longident post_item_attributes -## In state 2000, spurious reduction of production _signature_item -> open_statement -## In state 2028, spurious reduction of production mark_position_sig(_signature_item) -> _signature_item -## In state 2001, spurious reduction of production signature_item -> mark_position_sig(_signature_item) +## In state 1813, spurious reduction of production post_item_attributes -> +## In state 1814, spurious reduction of production open_statement -> OPEN override_flag mod_longident post_item_attributes +## In state 2002, spurious reduction of production _signature_item -> open_statement +## In state 2030, spurious reduction of production mark_position_sig(_signature_item) -> _signature_item +## In state 2003, spurious reduction of production signature_item -> mark_position_sig(_signature_item) ## interface: INCLUDE LBRACE TYPE LIDENT SEMI WITH ## -## Ends in an error in state: 1971. +## Ends in an error in state: 1973. ## ## signature -> signature_item SEMI . signature [ error RBRACE ] ## @@ -2988,7 +2988,7 @@ interface: INCLUDE LBRACE TYPE LIDENT SEMI WITH interface: INCLUDE LBRACE WITH ## -## Ends in an error in state: 1808. +## Ends in an error in state: 1810. ## ## _simple_module_type -> LBRACE . signature RBRACE [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _simple_module_type -> LBRACE . signature error [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3001,7 +3001,7 @@ interface: INCLUDE LBRACE WITH interface: INCLUDE LPAREN LBRACE WITH ## -## Ends in an error in state: 1189. +## Ends in an error in state: 1191. ## ## _simple_module_type -> LBRACE . signature RBRACE [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## _simple_module_type -> LBRACE . signature error [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] @@ -3014,7 +3014,7 @@ interface: INCLUDE LPAREN LBRACE WITH interface: INCLUDE LPAREN LIDENT WHILE ## -## Ends in an error in state: 1753. +## Ends in an error in state: 1755. ## ## _module_type -> module_type . WITH with_constraints [ error WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> module_type . EQUALGREATER module_type [ error WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -3030,7 +3030,7 @@ interface: INCLUDE LPAREN LIDENT WHILE interface: INCLUDE LPAREN LPAREN LIDENT WHILE ## -## Ends in an error in state: 2080. +## Ends in an error in state: 2082. ## ## _module_type -> module_type . WITH with_constraints [ error WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> module_type . EQUALGREATER module_type [ error WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -3046,7 +3046,7 @@ interface: INCLUDE LPAREN LPAREN LIDENT WHILE interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER LIDENT WHILE ## -## Ends in an error in state: 2088. +## Ends in an error in state: 2090. ## ## _module_type -> module_type . WITH with_constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN EQUALGREATER module_type . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] @@ -3061,7 +3061,7 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER LID interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER WITH ## -## Ends in an error in state: 2087. +## Ends in an error in state: 2089. ## ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN EQUALGREATER . module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3073,7 +3073,7 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER WIT interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN WITH ## -## Ends in an error in state: 2086. +## Ends in an error in state: 2088. ## ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN . EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3085,7 +3085,7 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT RPAREN WITH interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT SEMI ## -## Ends in an error in state: 2085. +## Ends in an error in state: 2087. ## ## _module_type -> module_type . WITH with_constraints [ WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> LPAREN functor_arg_name COLON module_type . RPAREN EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] @@ -3100,23 +3100,23 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON WITH ## -## Ends in an error in state: 2084. +## Ends in an error in state: 2086. ## ## _module_type -> LPAREN functor_arg_name COLON . module_type RPAREN EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3128,7 +3128,7 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE COLON WITH interface: INCLUDE LPAREN LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 2083. +## Ends in an error in state: 2085. ## ## _module_type -> LPAREN functor_arg_name . COLON module_type RPAREN EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3140,7 +3140,7 @@ interface: INCLUDE LPAREN LPAREN UNDERSCORE WITH interface: INCLUDE LPAREN LPAREN WITH ## -## Ends in an error in state: 1187. +## Ends in an error in state: 1189. ## ## _module_type -> LPAREN . functor_arg_name COLON module_type RPAREN EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## _simple_module_type -> LPAREN . module_type RPAREN [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] @@ -3154,7 +3154,7 @@ interface: INCLUDE LPAREN LPAREN WITH interface: INCLUDE LPAREN MODULE TYPE UIDENT COLON ## -## Ends in an error in state: 2444. +## Ends in an error in state: 2446. ## ## _module_expr -> module_expr . simple_module_expr [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF ] ## _module_expr -> module_expr . LPAREN module_expr error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF ] @@ -3168,19 +3168,19 @@ interface: INCLUDE LPAREN MODULE TYPE UIDENT COLON ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## interface: INCLUDE LPAREN MODULE TYPE WITH ## -## Ends in an error in state: 425. +## Ends in an error in state: 426. ## ## _non_arrowed_module_type -> MODULE TYPE . module_expr [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3192,7 +3192,7 @@ interface: INCLUDE LPAREN MODULE TYPE WITH interface: INCLUDE LPAREN MODULE WITH ## -## Ends in an error in state: 424. +## Ends in an error in state: 425. ## ## _non_arrowed_module_type -> MODULE . TYPE module_expr [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3204,7 +3204,7 @@ interface: INCLUDE LPAREN MODULE WITH interface: INCLUDE LPAREN UIDENT DOT UIDENT WHILE ## -## Ends in an error in state: 490. +## Ends in an error in state: 491. ## ## ident -> UIDENT . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## mod_ext2 -> mod_ext_longident DOT UIDENT . LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -3218,7 +3218,7 @@ interface: INCLUDE LPAREN UIDENT DOT UIDENT WHILE interface: INCLUDE LPAREN UIDENT DOT WITH ## -## Ends in an error in state: 489. +## Ends in an error in state: 490. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ DOT ] @@ -3232,7 +3232,7 @@ interface: INCLUDE LPAREN UIDENT DOT WITH interface: INCLUDE LPAREN UIDENT EQUALGREATER LIDENT WHILE ## -## Ends in an error in state: 1797. +## Ends in an error in state: 1799. ## ## _module_type -> module_type . WITH with_constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## _module_type -> module_type . EQUALGREATER module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] @@ -3247,7 +3247,7 @@ interface: INCLUDE LPAREN UIDENT EQUALGREATER LIDENT WHILE interface: INCLUDE LPAREN UIDENT EQUALGREATER WITH ## -## Ends in an error in state: 1796. +## Ends in an error in state: 1798. ## ## _module_type -> module_type EQUALGREATER . module_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3259,7 +3259,7 @@ interface: INCLUDE LPAREN UIDENT EQUALGREATER WITH interface: INCLUDE LPAREN UIDENT LPAREN UIDENT RPAREN WITH ## -## Ends in an error in state: 488. +## Ends in an error in state: 489. ## ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident . DOT UIDENT [ DOT ] @@ -3279,7 +3279,7 @@ interface: INCLUDE LPAREN UIDENT LPAREN UIDENT RPAREN WITH interface: INCLUDE LPAREN UIDENT WHILE ## -## Ends in an error in state: 1188. +## Ends in an error in state: 1190. ## ## functor_arg_name -> UIDENT . [ COLON ] ## ident -> UIDENT . [ error WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -3294,7 +3294,7 @@ interface: INCLUDE LPAREN UIDENT WHILE interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT DOT WITH ## -## Ends in an error in state: 1779. +## Ends in an error in state: 1781. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ error WITH SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] @@ -3307,7 +3307,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT DOT WITH interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT LPAREN UIDENT WITH ## -## Ends in an error in state: 1776. +## Ends in an error in state: 1778. ## ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ RPAREN LPAREN DOT ] ## mod_ext2 -> UIDENT LPAREN mod_ext_longident . RPAREN [ error WITH SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] @@ -3327,7 +3327,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT LPAREN UID interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT LPAREN WITH ## -## Ends in an error in state: 1775. +## Ends in an error in state: 1777. ## ## mod_ext2 -> UIDENT LPAREN . mod_ext_longident RPAREN [ error WITH SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] ## @@ -3352,7 +3352,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL UIDENT LPAREN WIT interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL WITH ## -## Ends in an error in state: 1773. +## Ends in an error in state: 1775. ## ## with_constraint -> MODULE UIDENT COLONEQUAL . mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## @@ -3364,7 +3364,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT COLONEQUAL WITH interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT DOT UIDENT WITH ## -## Ends in an error in state: 1788. +## Ends in an error in state: 1790. ## ## mod_longident -> mod_longident . DOT UIDENT [ EQUAL DOT ] ## with_constraint -> MODULE mod_longident . EQUAL mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3377,7 +3377,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT DOT UIDENT WITH interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT EQUAL UIDENT WHILE ## -## Ends in an error in state: 1774. +## Ends in an error in state: 1776. ## ## mod_ext2 -> UIDENT . LPAREN mod_ext_longident RPAREN [ error WITH SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] ## mod_ext_longident -> UIDENT . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF DOT AND ] @@ -3390,7 +3390,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT EQUAL UIDENT WHILE interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT EQUAL WITH ## -## Ends in an error in state: 1789. +## Ends in an error in state: 1791. ## ## with_constraint -> MODULE mod_longident EQUAL . mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## @@ -3402,7 +3402,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT EQUAL WITH interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT WITH ## -## Ends in an error in state: 1772. +## Ends in an error in state: 1774. ## ## mod_longident -> UIDENT . [ EQUAL DOT ] ## with_constraint -> MODULE UIDENT . COLONEQUAL mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3415,7 +3415,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE UIDENT WITH interface: INCLUDE LPAREN UIDENT WITH MODULE WITH ## -## Ends in an error in state: 1771. +## Ends in an error in state: 1773. ## ## with_constraint -> MODULE . mod_longident EQUAL mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## with_constraint -> MODULE . UIDENT COLONEQUAL mod_ext_longident [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3428,7 +3428,7 @@ interface: INCLUDE LPAREN UIDENT WITH MODULE WITH interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE AND WITH ## -## Ends in an error in state: 1792. +## Ends in an error in state: 1794. ## ## with_constraints -> with_constraints AND . with_constraint [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## @@ -3440,7 +3440,7 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRAC interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE EQUAL ## -## Ends in an error in state: 1791. +## Ends in an error in state: 1793. ## ## _module_type -> module_type WITH with_constraints . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## with_constraints -> with_constraints . AND with_constraint [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3452,21 +3452,21 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRAC ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1762, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type -## In state 1794, spurious reduction of production with_constraints -> with_constraint +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1764, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type +## In state 1796, spurious reduction of production with_constraints -> with_constraint ## interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL WITH ## -## Ends in an error in state: 1761. +## Ends in an error in state: 1763. ## ## with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL . core_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## @@ -3478,7 +3478,7 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT COLONEQUAL WITH interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT EQUAL PRI WITH ## -## Ends in an error in state: 1763. +## Ends in an error in state: 1765. ## ## with_constraint -> TYPE label_longident optional_type_parameters with_type_binder . core_type constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## @@ -3490,7 +3490,7 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT EQUAL PRI WITH interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT EQUAL UNDERSCORE EQUAL ## -## Ends in an error in state: 1765. +## Ends in an error in state: 1767. ## ## constraints -> constraints . CONSTRAINT constrain [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF CONSTRAINT AND ] ## with_constraint -> TYPE label_longident optional_type_parameters with_type_binder core_type constraints . [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3502,20 +3502,20 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT EQUAL UNDERSCORE EQUAL ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1764, spurious reduction of production constraints -> +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1766, spurious reduction of production constraints -> ## interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT UNDERSCORE AND ## -## Ends in an error in state: 1758. +## Ends in an error in state: 1760. ## ## with_constraint -> TYPE label_longident optional_type_parameters . with_type_binder core_type constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## with_constraint -> TYPE label_longident optional_type_parameters . COLONEQUAL core_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3527,14 +3527,14 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE LIDENT UNDERSCORE AND ## 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 1286, spurious reduction of production optional_type_parameters -> optional_type_parameter_list +## In state 1288, spurious reduction of production optional_type_parameters -> optional_type_parameter_list ## interface: INCLUDE LPAREN UIDENT WITH TYPE WITH ## -## Ends in an error in state: 1756. +## Ends in an error in state: 1758. ## ## with_constraint -> TYPE . label_longident optional_type_parameters with_type_binder core_type constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] ## with_constraint -> TYPE . label_longident optional_type_parameters COLONEQUAL core_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF AND ] @@ -3547,7 +3547,7 @@ interface: INCLUDE LPAREN UIDENT WITH TYPE WITH interface: INCLUDE LPAREN UIDENT WITH WITH ## -## Ends in an error in state: 1755. +## Ends in an error in state: 1757. ## ## _module_type -> module_type WITH . with_constraints [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF ] ## @@ -3559,7 +3559,7 @@ interface: INCLUDE LPAREN UIDENT WITH WITH interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER UIDENT COLONGREATER ## -## Ends in an error in state: 2035. +## Ends in an error in state: 2037. ## ## _module_type -> module_type . WITH with_constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN EQUALGREATER module_type . [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3574,23 +3574,23 @@ interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER UIDENT COL ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER WITH ## -## Ends in an error in state: 2034. +## Ends in an error in state: 2036. ## ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN EQUALGREATER . module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3602,7 +3602,7 @@ interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN EQUALGREATER WITH interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN WITH ## -## Ends in an error in state: 2033. +## Ends in an error in state: 2035. ## ## _module_type -> LPAREN functor_arg_name COLON module_type RPAREN . EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3614,7 +3614,7 @@ interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT RPAREN WITH interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT SEMI ## -## Ends in an error in state: 2032. +## Ends in an error in state: 2034. ## ## _module_type -> module_type . WITH with_constraints [ WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> LPAREN functor_arg_name COLON module_type . RPAREN EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3629,23 +3629,23 @@ interface: INCLUDE LPAREN UNDERSCORE COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: INCLUDE LPAREN UNDERSCORE COLON WITH ## -## Ends in an error in state: 1807. +## Ends in an error in state: 1809. ## ## _module_type -> LPAREN functor_arg_name COLON . module_type RPAREN EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3657,7 +3657,7 @@ interface: INCLUDE LPAREN UNDERSCORE COLON WITH interface: INCLUDE LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 1806. +## Ends in an error in state: 1808. ## ## _module_type -> LPAREN functor_arg_name . COLON module_type RPAREN EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3669,7 +3669,7 @@ interface: INCLUDE LPAREN UNDERSCORE WITH interface: INCLUDE LPAREN WITH ## -## Ends in an error in state: 1749. +## Ends in an error in state: 1751. ## ## _module_type -> LPAREN . functor_arg_name COLON module_type RPAREN EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _simple_module_type -> LPAREN . module_type RPAREN [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3683,7 +3683,7 @@ interface: INCLUDE LPAREN WITH interface: INCLUDE MODULE TYPE UIDENT COLON ## -## Ends in an error in state: 791. +## Ends in an error in state: 792. ## ## _module_expr -> module_expr . simple_module_expr [ WITH UIDENT SEMI RPAREN LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EQUAL EOF AND ] ## _module_expr -> module_expr . LPAREN module_expr error [ WITH UIDENT SEMI RPAREN LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EQUAL EOF AND ] @@ -3697,19 +3697,19 @@ interface: INCLUDE MODULE TYPE UIDENT COLON ## 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 808, spurious reduction of production _simple_module_expr -> mod_longident -## In state 812, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 809, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 790, spurious reduction of production _module_expr -> simple_module_expr -## In state 814, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 813, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 810, spurious reduction of production _simple_module_expr -> mod_longident +## In state 814, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 811, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 791, spurious reduction of production _module_expr -> simple_module_expr +## In state 816, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 815, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## interface: INCLUDE MODULE TYPE WITH ## -## Ends in an error in state: 789. +## Ends in an error in state: 790. ## ## _non_arrowed_module_type -> MODULE TYPE . module_expr [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3721,7 +3721,7 @@ interface: INCLUDE MODULE TYPE WITH interface: INCLUDE MODULE WITH ## -## Ends in an error in state: 788. +## Ends in an error in state: 789. ## ## _non_arrowed_module_type -> MODULE . TYPE module_expr [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3733,7 +3733,7 @@ interface: INCLUDE MODULE WITH interface: INCLUDE UIDENT DOT UIDENT WHILE ## -## Ends in an error in state: 804. +## Ends in an error in state: 806. ## ## ident -> UIDENT . [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF COLONGREATER AND ] ## mod_ext2 -> mod_ext_longident DOT UIDENT . LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -3747,7 +3747,7 @@ interface: INCLUDE UIDENT DOT UIDENT WHILE interface: INCLUDE UIDENT DOT WITH ## -## Ends in an error in state: 803. +## Ends in an error in state: 805. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ DOT ] @@ -3761,7 +3761,7 @@ interface: INCLUDE UIDENT DOT WITH interface: INCLUDE UIDENT EQUALGREATER UIDENT COLONGREATER ## -## Ends in an error in state: 1842. +## Ends in an error in state: 1844. ## ## _module_type -> module_type . WITH with_constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _module_type -> module_type . EQUALGREATER module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3776,23 +3776,23 @@ interface: INCLUDE UIDENT EQUALGREATER UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: INCLUDE UIDENT EQUALGREATER WITH ## -## Ends in an error in state: 1841. +## Ends in an error in state: 1843. ## ## _module_type -> module_type EQUALGREATER . module_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3804,7 +3804,7 @@ interface: INCLUDE UIDENT EQUALGREATER WITH interface: INCLUDE UIDENT LPAREN UIDENT RPAREN WITH ## -## Ends in an error in state: 802. +## Ends in an error in state: 804. ## ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident . DOT UIDENT [ DOT ] @@ -3852,7 +3852,7 @@ interface: INCLUDE UIDENT WHILE interface: INCLUDE UIDENT WITH MODULE UIDENT COLONEQUAL WITH ## -## Ends in an error in state: 1832. +## Ends in an error in state: 1834. ## ## with_constraint -> MODULE UIDENT COLONEQUAL . mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3864,7 +3864,7 @@ interface: INCLUDE UIDENT WITH MODULE UIDENT COLONEQUAL WITH interface: INCLUDE UIDENT WITH MODULE UIDENT DOT UIDENT WITH ## -## Ends in an error in state: 1834. +## Ends in an error in state: 1836. ## ## mod_longident -> mod_longident . DOT UIDENT [ EQUAL DOT ] ## with_constraint -> MODULE mod_longident . EQUAL mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3890,7 +3890,7 @@ interface: INCLUDE UIDENT WITH MODULE UIDENT EQUAL UIDENT WHILE interface: INCLUDE UIDENT WITH MODULE UIDENT EQUAL WITH ## -## Ends in an error in state: 1835. +## Ends in an error in state: 1837. ## ## with_constraint -> MODULE mod_longident EQUAL . mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3902,7 +3902,7 @@ interface: INCLUDE UIDENT WITH MODULE UIDENT EQUAL WITH interface: INCLUDE UIDENT WITH MODULE UIDENT WITH ## -## Ends in an error in state: 1831. +## Ends in an error in state: 1833. ## ## mod_longident -> UIDENT . [ EQUAL DOT ] ## with_constraint -> MODULE UIDENT . COLONEQUAL mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3915,7 +3915,7 @@ interface: INCLUDE UIDENT WITH MODULE UIDENT WITH interface: INCLUDE UIDENT WITH MODULE WITH ## -## Ends in an error in state: 1830. +## Ends in an error in state: 1832. ## ## with_constraint -> MODULE . mod_longident EQUAL mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## with_constraint -> MODULE . UIDENT COLONEQUAL mod_ext_longident [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3928,7 +3928,7 @@ interface: INCLUDE UIDENT WITH MODULE WITH interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE AND WITH ## -## Ends in an error in state: 1838. +## Ends in an error in state: 1840. ## ## with_constraints -> with_constraints AND . with_constraint [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3940,7 +3940,7 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE AND W interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE GREATER ## -## Ends in an error in state: 1837. +## Ends in an error in state: 1839. ## ## _module_type -> module_type WITH with_constraints . [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## with_constraints -> with_constraints . AND with_constraint [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -3952,21 +3952,21 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE GREAT ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1826, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type -## In state 1840, spurious reduction of production with_constraints -> with_constraint +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1828, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type +## In state 1842, spurious reduction of production with_constraints -> with_constraint ## interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL WITH ## -## Ends in an error in state: 1825. +## Ends in an error in state: 1827. ## ## with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL . core_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3978,7 +3978,7 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT COLONEQUAL WITH interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL PRI WITH ## -## Ends in an error in state: 1827. +## Ends in an error in state: 1829. ## ## with_constraint -> TYPE label_longident optional_type_parameters with_type_binder . core_type constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -3990,7 +3990,7 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL PRI WITH interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL UNDERSCORE GREATER ## -## Ends in an error in state: 1829. +## Ends in an error in state: 1831. ## ## constraints -> constraints . CONSTRAINT constrain [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT AND ] ## with_constraint -> TYPE label_longident optional_type_parameters with_type_binder core_type constraints . [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -4002,20 +4002,20 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL UNDERSCORE GREATER ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1828, spurious reduction of production constraints -> +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1830, spurious reduction of production constraints -> ## interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL WITH ## -## Ends in an error in state: 1759. +## Ends in an error in state: 1761. ## ## with_type_binder -> EQUAL . [ UNDERSCORE UIDENT SHARP QUOTE LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKET LBRACE ] ## with_type_binder -> EQUAL . PRI [ UNDERSCORE UIDENT SHARP QUOTE LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKET LBRACE ] @@ -4028,7 +4028,7 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT EQUAL WITH interface: INCLUDE UIDENT WITH TYPE LIDENT WITH ## -## Ends in an error in state: 1824. +## Ends in an error in state: 1826. ## ## with_constraint -> TYPE label_longident optional_type_parameters . with_type_binder core_type constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## with_constraint -> TYPE label_longident optional_type_parameters . COLONEQUAL core_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -4040,14 +4040,14 @@ interface: INCLUDE UIDENT WITH TYPE LIDENT WITH ## 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 1823, spurious reduction of production optional_type_parameters -> +## In state 1825, spurious reduction of production optional_type_parameters -> ## interface: INCLUDE UIDENT WITH TYPE WITH ## -## Ends in an error in state: 1822. +## Ends in an error in state: 1824. ## ## with_constraint -> TYPE . label_longident optional_type_parameters with_type_binder core_type constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## with_constraint -> TYPE . label_longident optional_type_parameters COLONEQUAL core_type [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -4060,7 +4060,7 @@ interface: INCLUDE UIDENT WITH TYPE WITH interface: INCLUDE UIDENT WITH WITH ## -## Ends in an error in state: 1821. +## Ends in an error in state: 1823. ## ## _module_type -> module_type WITH . with_constraints [ WITH SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## @@ -4072,7 +4072,7 @@ interface: INCLUDE UIDENT WITH WITH interface: INCLUDE WITH ## -## Ends in an error in state: 1923. +## Ends in an error in state: 1925. ## ## _signature_item -> INCLUDE . module_type post_item_attributes [ SEMI ] ## @@ -4084,7 +4084,7 @@ interface: INCLUDE WITH interface: LET LIDENT COLON WITH ## -## Ends in an error in state: 1855. +## Ends in an error in state: 1857. ## ## _signature_item -> LET val_ident COLON . core_type post_item_attributes [ SEMI ] ## @@ -4096,7 +4096,7 @@ interface: LET LIDENT COLON WITH interface: LET LIDENT WITH ## -## Ends in an error in state: 1854. +## Ends in an error in state: 1856. ## ## _signature_item -> LET val_ident . COLON core_type post_item_attributes [ SEMI ] ## @@ -4108,7 +4108,7 @@ interface: LET LIDENT WITH interface: LET LPAREN WITH ## -## Ends in an error in state: 641. +## Ends in an error in state: 642. ## ## val_ident -> LPAREN . operator RPAREN [ WHEN UIDENT TRUE STRING STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 IN GREATER FLOAT FALSE EQUALGREATER EQUAL EOF COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -4120,7 +4120,7 @@ interface: LET LPAREN WITH interface: LET MODULE REC UIDENT COLON LIDENT AND WITH ## -## Ends in an error in state: 2011. +## Ends in an error in state: 2013. ## ## and_module_rec_declaration -> AND . module_rec_declaration_details post_item_attributes [ SEMI AND ] ## @@ -4132,7 +4132,7 @@ interface: LET MODULE REC UIDENT COLON LIDENT AND WITH interface: LET MODULE REC UIDENT COLON LIDENT LBRACKETATAT AND RBRACKET WITH ## -## Ends in an error in state: 2010. +## Ends in an error in state: 2012. ## ## _signature_item -> many_module_rec_declarations . [ SEMI ] ## many_module_rec_declarations -> many_module_rec_declarations . and_module_rec_declaration [ SEMI AND ] @@ -4144,16 +4144,16 @@ interface: LET MODULE REC UIDENT COLON LIDENT LBRACKETATAT AND RBRACKET WITH ## 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 1519, spurious reduction of production post_item_attributes -> -## In state 1520, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes -## In state 1999, spurious reduction of production many_module_rec_declarations -> opt_let_module REC module_rec_declaration_details post_item_attributes +## In state 1521, spurious reduction of production post_item_attributes -> +## In state 1522, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes +## In state 2001, spurious reduction of production many_module_rec_declarations -> opt_let_module REC module_rec_declaration_details post_item_attributes ## interface: LET MODULE REC UIDENT COLON UIDENT RPAREN ## -## Ends in an error in state: 1997. +## Ends in an error in state: 1999. ## ## _module_type -> module_type . WITH with_constraints [ WITH SEMI LBRACKETATAT LBRACKETAT EQUALGREATER AND ] ## _module_type -> module_type . EQUALGREATER module_type [ WITH SEMI LBRACKETATAT LBRACKETAT EQUALGREATER AND ] @@ -4168,23 +4168,23 @@ interface: LET MODULE REC UIDENT COLON UIDENT RPAREN ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: LET MODULE REC UIDENT COLON WITH ## -## Ends in an error in state: 1996. +## Ends in an error in state: 1998. ## ## module_rec_declaration_details -> UIDENT COLON . module_type [ SEMI LBRACKETATAT AND ] ## @@ -4196,7 +4196,7 @@ interface: LET MODULE REC UIDENT COLON WITH interface: LET MODULE REC UIDENT WITH ## -## Ends in an error in state: 1995. +## Ends in an error in state: 1997. ## ## module_rec_declaration_details -> UIDENT . COLON module_type [ SEMI LBRACKETATAT AND ] ## @@ -4208,7 +4208,7 @@ interface: LET MODULE REC UIDENT WITH interface: LET MODULE REC WITH ## -## Ends in an error in state: 1994. +## Ends in an error in state: 1996. ## ## many_module_rec_declarations -> opt_let_module REC . module_rec_declaration_details post_item_attributes [ SEMI AND ] ## @@ -4220,7 +4220,7 @@ interface: LET MODULE REC WITH interface: LET MODULE UIDENT COLON UIDENT RPAREN ## -## Ends in an error in state: 1983. +## Ends in an error in state: 1985. ## ## _module_declaration -> COLON module_type . [ SEMI LBRACKETATAT ] ## _module_type -> module_type . WITH with_constraints [ WITH SEMI LBRACKETATAT LBRACKETAT EQUALGREATER ] @@ -4235,23 +4235,23 @@ interface: LET MODULE UIDENT COLON UIDENT RPAREN ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: LET MODULE UIDENT COLON WITH ## -## Ends in an error in state: 1982. +## Ends in an error in state: 1984. ## ## _module_declaration -> COLON . module_type [ SEMI LBRACKETATAT ] ## @@ -4263,7 +4263,7 @@ interface: LET MODULE UIDENT COLON WITH interface: LET MODULE UIDENT EQUAL WITH ## -## Ends in an error in state: 1989. +## Ends in an error in state: 1991. ## ## _signature_item -> opt_let_module UIDENT EQUAL . mod_longident post_item_attributes [ SEMI ] ## @@ -4275,7 +4275,7 @@ interface: LET MODULE UIDENT EQUAL WITH interface: LET MODULE UIDENT LPAREN RPAREN WITH ## -## Ends in an error in state: 1987. +## Ends in an error in state: 1989. ## ## _module_declaration -> LPAREN RPAREN . module_declaration [ SEMI LBRACKETATAT ] ## @@ -4287,7 +4287,7 @@ interface: LET MODULE UIDENT LPAREN RPAREN WITH interface: LET MODULE UIDENT LPAREN UIDENT COLON UIDENT RPAREN WITH ## -## Ends in an error in state: 1981. +## Ends in an error in state: 1983. ## ## _module_declaration -> LPAREN UIDENT COLON module_type RPAREN . module_declaration [ SEMI LBRACKETATAT ] ## @@ -4299,7 +4299,7 @@ interface: LET MODULE UIDENT LPAREN UIDENT COLON UIDENT RPAREN WITH interface: LET MODULE UIDENT LPAREN UIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 1980. +## Ends in an error in state: 1982. ## ## _module_declaration -> LPAREN UIDENT COLON module_type . RPAREN module_declaration [ SEMI LBRACKETATAT ] ## _module_type -> module_type . WITH with_constraints [ WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -4314,23 +4314,23 @@ interface: LET MODULE UIDENT LPAREN UIDENT COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## interface: LET MODULE UIDENT LPAREN UIDENT COLON WITH ## -## Ends in an error in state: 1979. +## Ends in an error in state: 1981. ## ## _module_declaration -> LPAREN UIDENT COLON . module_type RPAREN module_declaration [ SEMI LBRACKETATAT ] ## @@ -4342,7 +4342,7 @@ interface: LET MODULE UIDENT LPAREN UIDENT COLON WITH interface: LET MODULE UIDENT LPAREN UIDENT WITH ## -## Ends in an error in state: 1978. +## Ends in an error in state: 1980. ## ## _module_declaration -> LPAREN UIDENT . COLON module_type RPAREN module_declaration [ SEMI LBRACKETATAT ] ## @@ -4354,7 +4354,7 @@ interface: LET MODULE UIDENT LPAREN UIDENT WITH interface: LET MODULE UIDENT LPAREN WITH ## -## Ends in an error in state: 1977. +## Ends in an error in state: 1979. ## ## _module_declaration -> LPAREN . UIDENT COLON module_type RPAREN module_declaration [ SEMI LBRACKETATAT ] ## _module_declaration -> LPAREN . RPAREN module_declaration [ SEMI LBRACKETATAT ] @@ -4367,7 +4367,7 @@ interface: LET MODULE UIDENT LPAREN WITH interface: LET MODULE UIDENT WITH ## -## Ends in an error in state: 1976. +## Ends in an error in state: 1978. ## ## _signature_item -> opt_let_module UIDENT . module_declaration post_item_attributes [ SEMI ] ## _signature_item -> opt_let_module UIDENT . EQUAL mod_longident post_item_attributes [ SEMI ] @@ -4380,7 +4380,7 @@ interface: LET MODULE UIDENT WITH interface: LET MODULE WITH ## -## Ends in an error in state: 1975. +## Ends in an error in state: 1977. ## ## _signature_item -> opt_let_module . UIDENT module_declaration post_item_attributes [ SEMI ] ## _signature_item -> opt_let_module . UIDENT EQUAL mod_longident post_item_attributes [ SEMI ] @@ -4394,7 +4394,7 @@ interface: LET MODULE WITH interface: LET WITH ## -## Ends in an error in state: 1853. +## Ends in an error in state: 1855. ## ## _signature_item -> LET . val_ident COLON core_type post_item_attributes [ SEMI ] ## opt_let_module -> LET . MODULE [ UIDENT REC ] @@ -4407,7 +4407,7 @@ interface: LET WITH interface: MODULE TYPE UIDENT EQUAL WITH ## -## Ends in an error in state: 1816. +## Ends in an error in state: 1818. ## ## _signature_item -> MODULE TYPE ident EQUAL . module_type post_item_attributes [ SEMI ] ## @@ -4419,7 +4419,7 @@ interface: MODULE TYPE UIDENT EQUAL WITH interface: MODULE TYPE WITH ## -## Ends in an error in state: 1814. +## Ends in an error in state: 1816. ## ## _signature_item -> MODULE TYPE . ident post_item_attributes [ SEMI ] ## _signature_item -> MODULE TYPE . ident EQUAL module_type post_item_attributes [ SEMI ] @@ -4432,7 +4432,7 @@ interface: MODULE TYPE WITH interface: MODULE WITH ## -## Ends in an error in state: 1813. +## Ends in an error in state: 1815. ## ## _signature_item -> MODULE . TYPE ident post_item_attributes [ SEMI ] ## _signature_item -> MODULE . TYPE ident EQUAL module_type post_item_attributes [ SEMI ] @@ -4446,7 +4446,7 @@ interface: MODULE WITH interface: OPEN UIDENT WITH ## -## Ends in an error in state: 2683. +## Ends in an error in state: 2685. ## ## signature -> signature_item . SEMI signature [ EOF ] ## @@ -4457,18 +4457,18 @@ interface: OPEN UIDENT WITH ## 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 1811, spurious reduction of production post_item_attributes -> -## In state 1812, spurious reduction of production open_statement -> OPEN override_flag mod_longident post_item_attributes -## In state 2000, spurious reduction of production _signature_item -> open_statement -## In state 2028, spurious reduction of production mark_position_sig(_signature_item) -> _signature_item -## In state 2001, spurious reduction of production signature_item -> mark_position_sig(_signature_item) +## In state 1813, spurious reduction of production post_item_attributes -> +## In state 1814, spurious reduction of production open_statement -> OPEN override_flag mod_longident post_item_attributes +## In state 2002, spurious reduction of production _signature_item -> open_statement +## In state 2030, spurious reduction of production mark_position_sig(_signature_item) -> _signature_item +## In state 2003, spurious reduction of production signature_item -> mark_position_sig(_signature_item) ## interface: TYPE LIDENT PLUSEQ BAR WITH ## -## Ends in an error in state: 2068. +## Ends in an error in state: 2070. ## ## sig_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ private_flag opt_bar . sig_extension_constructors post_item_attributes [ SEMI ] ## @@ -4480,7 +4480,7 @@ interface: TYPE LIDENT PLUSEQ BAR WITH interface: TYPE LIDENT PLUSEQ PRI BANG ## -## Ends in an error in state: 2067. +## Ends in an error in state: 2069. ## ## sig_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ private_flag . opt_bar sig_extension_constructors post_item_attributes [ SEMI ] ## @@ -4492,7 +4492,7 @@ interface: TYPE LIDENT PLUSEQ PRI BANG interface: TYPE LIDENT PLUSEQ UIDENT BAR WITH ## -## Ends in an error in state: 2070. +## Ends in an error in state: 2072. ## ## sig_extension_constructors -> sig_extension_constructors BAR . extension_constructor_declaration [ SEMI LBRACKETATAT BAR ] ## @@ -4504,7 +4504,7 @@ interface: TYPE LIDENT PLUSEQ UIDENT BAR WITH interface: TYPE LIDENT PLUSEQ WITH ## -## Ends in an error in state: 2065. +## Ends in an error in state: 2067. ## ## sig_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ . private_flag opt_bar sig_extension_constructors post_item_attributes [ SEMI ] ## @@ -4516,7 +4516,7 @@ interface: TYPE LIDENT PLUSEQ WITH interface: TYPE LIDENT RBRACKET ## -## Ends in an error in state: 1290. +## Ends in an error in state: 1292. ## ## potentially_long_ident_and_optional_type_parameters -> LIDENT optional_type_parameters . [ PLUSEQ ] ## type_declaration_details -> LIDENT optional_type_parameters . type_kind constraints [ SEMI LBRACKETATAT EOF AND ] @@ -4528,14 +4528,14 @@ interface: TYPE LIDENT RBRACKET ## 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 1289, spurious reduction of production optional_type_parameters -> +## In state 1291, spurious reduction of production optional_type_parameters -> ## interface: TYPE LIDENT SEMI WITH ## -## Ends in an error in state: 2684. +## Ends in an error in state: 2686. ## ## signature -> signature_item SEMI . signature [ EOF ] ## @@ -4547,7 +4547,7 @@ interface: TYPE LIDENT SEMI WITH interface: TYPE NONREC LET ## -## Ends in an error in state: 1191. +## Ends in an error in state: 1193. ## ## many_type_declarations -> TYPE nonrec_flag . type_declaration_details post_item_attributes [ SEMI AND ] ## sig_type_extension -> TYPE nonrec_flag . potentially_long_ident_and_optional_type_parameters PLUSEQ private_flag opt_bar sig_extension_constructors post_item_attributes [ SEMI ] @@ -4560,7 +4560,7 @@ interface: TYPE NONREC LET interface: TYPE UIDENT DOT LIDENT UNDERSCORE SEMI ## -## Ends in an error in state: 2064. +## Ends in an error in state: 2066. ## ## sig_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters . PLUSEQ private_flag opt_bar sig_extension_constructors post_item_attributes [ SEMI ] ## @@ -4571,15 +4571,15 @@ interface: TYPE UIDENT DOT LIDENT UNDERSCORE SEMI ## 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 1286, spurious reduction of production optional_type_parameters -> optional_type_parameter_list -## In state 1294, spurious reduction of production potentially_long_ident_and_optional_type_parameters -> type_strictly_longident optional_type_parameters +## In state 1288, spurious reduction of production optional_type_parameters -> optional_type_parameter_list +## In state 1296, spurious reduction of production potentially_long_ident_and_optional_type_parameters -> type_strictly_longident optional_type_parameters ## interface: WITH ## -## Ends in an error in state: 2682. +## Ends in an error in state: 2684. ## ## interface' -> . interface [ # ] ## @@ -4591,7 +4591,7 @@ interface: WITH implementation: CLASS LIDENT COLON LIDENTCOLONCOLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1702. +## Ends in an error in state: 1704. ## ## _class_constructor_type -> LIDENTCOLONCOLON non_arrowed_core_type EQUALGREATER . class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## @@ -4603,7 +4603,7 @@ implementation: CLASS LIDENT COLON LIDENTCOLONCOLON UNDERSCORE EQUALGREATER WITH implementation: CLASS LIDENT COLON LIDENTCOLONCOLON WITH ## -## Ends in an error in state: 1691. +## Ends in an error in state: 1693. ## ## _class_constructor_type -> LIDENTCOLONCOLON . QUESTION non_arrowed_core_type EQUALGREATER class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## _class_constructor_type -> LIDENTCOLONCOLON . non_arrowed_core_type EQUALGREATER class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] @@ -4616,7 +4616,7 @@ implementation: CLASS LIDENT COLON LIDENTCOLONCOLON WITH implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1694. +## Ends in an error in state: 1696. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION non_arrowed_core_type EQUALGREATER . class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## @@ -4628,7 +4628,7 @@ implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE EQUALGRE implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE WITH ## -## Ends in an error in state: 1693. +## Ends in an error in state: 1695. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION non_arrowed_core_type . EQUALGREATER class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] @@ -4641,7 +4641,7 @@ implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE WITH implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION WITH ## -## Ends in an error in state: 1692. +## Ends in an error in state: 1694. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION . non_arrowed_core_type EQUALGREATER class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## @@ -4653,7 +4653,7 @@ implementation: CLASS LIDENT COLON LIDENTCOLONCOLON QUESTION WITH implementation: CLASS LIDENT COLON LIDENT WITH ## -## Ends in an error in state: 1695. +## Ends in an error in state: 1697. ## ## _class_constructor_type -> non_arrowed_core_type . EQUALGREATER class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] @@ -4665,17 +4665,17 @@ implementation: CLASS LIDENT COLON LIDENT WITH ## 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 275, spurious reduction of production _non_arrowed_simple_core_type -> type_longident -## In state 280, spurious reduction of production mark_position_typ2(_non_arrowed_simple_core_type) -> _non_arrowed_simple_core_type -## In state 278, spurious reduction of production non_arrowed_simple_core_type -> mark_position_typ2(_non_arrowed_simple_core_type) -## In state 282, spurious reduction of production non_arrowed_core_type -> non_arrowed_simple_core_type +## In state 276, spurious reduction of production _non_arrowed_simple_core_type -> type_longident +## In state 281, spurious reduction of production mark_position_typ2(_non_arrowed_simple_core_type) -> _non_arrowed_simple_core_type +## In state 279, spurious reduction of production non_arrowed_simple_core_type -> mark_position_typ2(_non_arrowed_simple_core_type) +## In state 283, spurious reduction of production non_arrowed_core_type -> non_arrowed_simple_core_type ## implementation: CLASS LIDENT COLON NEW WITH ## -## Ends in an error in state: 1675. +## Ends in an error in state: 1677. ## ## _class_constructor_type -> NEW . class_instance_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## @@ -4687,7 +4687,7 @@ implementation: CLASS LIDENT COLON NEW WITH implementation: CLASS LIDENT COLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1696. +## Ends in an error in state: 1698. ## ## _class_constructor_type -> non_arrowed_core_type EQUALGREATER . class_constructor_type [ SEMI RPAREN LBRACKETATAT EQUAL AND ] ## @@ -4699,7 +4699,7 @@ implementation: CLASS LIDENT COLON UNDERSCORE EQUALGREATER WITH implementation: CLASS LIDENT MINUS WITH ## -## Ends in an error in state: 1456. +## Ends in an error in state: 1458. ## ## signed_constant -> MINUS . INT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOTDOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## signed_constant -> MINUS . FLOAT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOTDOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -4716,7 +4716,7 @@ implementation: CLASS LIDENT MINUS WITH implementation: CLASS LIDENT PLUS WITH ## -## Ends in an error in state: 1455. +## Ends in an error in state: 1457. ## ## signed_constant -> PLUS . INT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOTDOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## signed_constant -> PLUS . FLOAT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOTDOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -4733,7 +4733,7 @@ implementation: CLASS LIDENT PLUS WITH implementation: CLASS LIDENT QUOTE WITH ## -## Ends in an error in state: 1444. +## Ends in an error in state: 1446. ## ## _type_variable -> QUOTE . ident [ UNDERSCORE UIDENT TRUE STRING SHARP QUOTE PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUAL COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## @@ -4745,7 +4745,7 @@ implementation: CLASS LIDENT QUOTE WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS UNDERSCORE SEMI WITH ## -## Ends in an error in state: 1373. +## Ends in an error in state: 1375. ## ## class_sig_body -> class_self_type . class_sig_fields opt_semi [ error RBRACE ] ## @@ -4757,7 +4757,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS UNDERSCORE SEMI WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS UNDERSCORE WITH ## -## Ends in an error in state: 1368. +## Ends in an error in state: 1370. ## ## class_self_type -> AS core_type . SEMI [ error VAL SEMI RBRACE PUB PRI LBRACKETPERCENTPERCENT LBRACKETATATAT INHERIT CONSTRAINT ] ## @@ -4768,19 +4768,19 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS WITH ## -## Ends in an error in state: 1367. +## Ends in an error in state: 1369. ## ## class_self_type -> AS . core_type SEMI [ error VAL SEMI RBRACE PUB PRI LBRACKETPERCENTPERCENT LBRACKETATATAT INHERIT CONSTRAINT ] ## @@ -4792,7 +4792,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE AS WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE CONSTRAINT WITH ## -## Ends in an error in state: 1426. +## Ends in an error in state: 1428. ## ## _class_sig_field -> CONSTRAINT . constrain_field post_item_attributes [ error SEMI RBRACE ] ## @@ -4804,7 +4804,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE CONSTRAINT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE INHERIT LIDENT RPAREN ## -## Ends in an error in state: 1421. +## Ends in an error in state: 1423. ## ## _class_instance_type -> class_instance_type . attribute [ error SEMI RBRACE LBRACKETATAT LBRACKETAT ] ## _class_sig_field -> INHERIT class_instance_type . [ error SEMI RBRACE ] @@ -4817,16 +4817,16 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE INHERIT LIDENT RPAREN ## 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 1419, spurious reduction of production _class_instance_type -> clty_longident -## In state 1425, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1417, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1421, spurious reduction of production _class_instance_type -> clty_longident +## In state 1427, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1419, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) ## implementation: CLASS LIDENT UNDERSCORE COLON LBRACE INHERIT WITH ## -## Ends in an error in state: 1413. +## Ends in an error in state: 1415. ## ## _class_sig_field -> INHERIT . class_instance_type [ error SEMI RBRACE ] ## _class_sig_field -> INHERIT . class_instance_type item_attribute post_item_attributes [ error SEMI RBRACE ] @@ -4839,7 +4839,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE INHERIT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE LBRACKETPERCENTPERCENT WITH RBRACKET WITH ## -## Ends in an error in state: 1678. +## Ends in an error in state: 1680. ## ## _class_instance_type -> LBRACE class_sig_body . RBRACE [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _class_instance_type -> LBRACE class_sig_body . error [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -4851,20 +4851,20 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE LBRACKETPERCENTPERCENT WITH ## 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 1433, spurious reduction of production post_item_attributes -> -## In state 1434, spurious reduction of production _class_sig_field -> item_extension post_item_attributes -## In state 1439, spurious reduction of production mark_position_ctf(_class_sig_field) -> _class_sig_field -## In state 1432, spurious reduction of production class_sig_field -> mark_position_ctf(_class_sig_field) -## In state 1441, spurious reduction of production class_sig_fields -> class_sig_field -## In state 1436, spurious reduction of production opt_semi -> -## In state 1440, spurious reduction of production class_sig_body -> class_self_type class_sig_fields opt_semi +## In state 1435, spurious reduction of production post_item_attributes -> +## In state 1436, spurious reduction of production _class_sig_field -> item_extension post_item_attributes +## In state 1441, spurious reduction of production mark_position_ctf(_class_sig_field) -> _class_sig_field +## In state 1434, spurious reduction of production class_sig_field -> mark_position_ctf(_class_sig_field) +## In state 1443, spurious reduction of production class_sig_fields -> class_sig_field +## In state 1438, spurious reduction of production opt_semi -> +## In state 1442, spurious reduction of production class_sig_body -> class_self_type class_sig_fields opt_semi ## implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB LIDENT COLON WITH ## -## Ends in an error in state: 1394. +## Ends in an error in state: 1396. ## ## _class_sig_field -> PUB private_virtual_flags label COLON . poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4876,7 +4876,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB LIDENT COLON WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB LIDENT WITH ## -## Ends in an error in state: 1393. +## Ends in an error in state: 1395. ## ## _class_sig_field -> PUB private_virtual_flags label . COLON poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4888,7 +4888,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB LIDENT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PRI WITH ## -## Ends in an error in state: 1407. +## Ends in an error in state: 1409. ## ## _class_sig_field -> PRI . private_virtual_flags label COLON poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4900,7 +4900,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PRI WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PRI VIRTUAL WITH ## -## Ends in an error in state: 1408. +## Ends in an error in state: 1410. ## ## _class_sig_field -> PRI private_virtual_flags . label COLON poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4912,7 +4912,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PRI VIRTUAL WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB VIRTUAL WITH ## -## Ends in an error in state: 1392. +## Ends in an error in state: 1394. ## ## _class_sig_field -> PUB private_virtual_flags . label COLON poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4924,7 +4924,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB VIRTUAL WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB WITH ## -## Ends in an error in state: 1390. +## Ends in an error in state: 1392. ## ## _class_sig_field -> PUB . private_virtual_flags label COLON poly_type post_item_attributes [ error SEMI RBRACE ] ## @@ -4936,7 +4936,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE PUB WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL LIDENT COLON WITH ## -## Ends in an error in state: 1388. +## Ends in an error in state: 1390. ## ## value_type -> label COLON . core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -4948,7 +4948,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL LIDENT COLON WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL LIDENT WITH ## -## Ends in an error in state: 1387. +## Ends in an error in state: 1389. ## ## value_type -> label . COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -4960,7 +4960,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL LIDENT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE LIDENT COLON WITH ## -## Ends in an error in state: 1383. +## Ends in an error in state: 1385. ## ## value_type -> MUTABLE virtual_flag label COLON . core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -4972,7 +4972,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE LIDENT COLON WI implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE LIDENT WITH ## -## Ends in an error in state: 1382. +## Ends in an error in state: 1384. ## ## value_type -> MUTABLE virtual_flag label . COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -4984,7 +4984,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE LIDENT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE VIRTUAL LET ## -## Ends in an error in state: 1381. +## Ends in an error in state: 1383. ## ## value_type -> MUTABLE virtual_flag . label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -4996,7 +4996,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE VIRTUAL LET implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE WITH ## -## Ends in an error in state: 1380. +## Ends in an error in state: 1382. ## ## value_type -> MUTABLE . virtual_flag label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -5008,7 +5008,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL MUTABLE WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL LIDENT COLON WITH ## -## Ends in an error in state: 1378. +## Ends in an error in state: 1380. ## ## value_type -> VIRTUAL mutable_flag label COLON . core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -5020,7 +5020,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL LIDENT COLON WI implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL LIDENT WITH ## -## Ends in an error in state: 1377. +## Ends in an error in state: 1379. ## ## value_type -> VIRTUAL mutable_flag label . COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -5032,7 +5032,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL LIDENT WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL MUTABLE LET ## -## Ends in an error in state: 1376. +## Ends in an error in state: 1378. ## ## value_type -> VIRTUAL mutable_flag . label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -5044,7 +5044,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL MUTABLE LET implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL WITH ## -## Ends in an error in state: 1375. +## Ends in an error in state: 1377. ## ## value_type -> VIRTUAL . mutable_flag label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -5056,7 +5056,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL VIRTUAL WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL WITH ## -## Ends in an error in state: 1374. +## Ends in an error in state: 1376. ## ## _class_sig_field -> VAL . value_type post_item_attributes [ error SEMI RBRACE ] ## @@ -5068,7 +5068,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE VAL WITH implementation: CLASS LIDENT UNDERSCORE COLON LBRACE WITH ## -## Ends in an error in state: 1677. +## Ends in an error in state: 1679. ## ## _class_instance_type -> LBRACE . class_sig_body RBRACE [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _class_instance_type -> LBRACE . class_sig_body error [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -5081,7 +5081,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LBRACE WITH implementation: CLASS LIDENT UNDERSCORE COLON LIDENT SEMI ## -## Ends in an error in state: 1720. +## Ends in an error in state: 1722. ## ## _class_instance_type -> class_instance_type . attribute [ LBRACKETAT EQUALGREATER ] ## _non_arrowed_class_constructor_type -> class_instance_type . [ EQUALGREATER ] @@ -5093,16 +5093,16 @@ implementation: CLASS LIDENT UNDERSCORE COLON LIDENT SEMI ## 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 1686, spurious reduction of production _class_instance_type -> clty_longident -## In state 1690, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1684, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1688, spurious reduction of production _class_instance_type -> clty_longident +## In state 1692, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1686, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) ## implementation: CLASS LIDENT UNDERSCORE COLON LIDENT UNDERSCORE WITH ## -## Ends in an error in state: 1687. +## Ends in an error in state: 1689. ## ## _class_instance_type -> clty_longident non_arrowed_simple_core_type_list . [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ UNDERSCORE UIDENT SHARP SEMI RPAREN QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF AND ] @@ -5115,7 +5115,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LIDENT UNDERSCORE WITH implementation: CLASS LIDENT UNDERSCORE COLON LIDENT WITH ## -## Ends in an error in state: 1686. +## Ends in an error in state: 1688. ## ## _class_instance_type -> clty_longident . [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] ## _class_instance_type -> clty_longident . non_arrowed_simple_core_type_list [ SEMI RPAREN LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF AND ] @@ -5128,7 +5128,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LIDENT WITH implementation: CLASS LIDENT UNDERSCORE COLON LPAREN NEW LIDENT SEMI ## -## Ends in an error in state: 1714. +## Ends in an error in state: 1716. ## ## _non_arrowed_class_constructor_type -> LPAREN class_constructor_type . RPAREN [ EQUALGREATER ] ## @@ -5139,19 +5139,19 @@ implementation: CLASS LIDENT UNDERSCORE COLON LPAREN NEW LIDENT SEMI ## 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 1686, spurious reduction of production _class_instance_type -> clty_longident -## In state 1690, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1684, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) -## In state 1688, spurious reduction of production _class_constructor_type -> NEW class_instance_type -## In state 1699, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type -## In state 1697, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) +## In state 1688, spurious reduction of production _class_instance_type -> clty_longident +## In state 1692, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1686, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1690, spurious reduction of production _class_constructor_type -> NEW class_instance_type +## In state 1701, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type +## In state 1699, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) ## implementation: CLASS LIDENT UNDERSCORE COLON LPAREN WITH ## -## Ends in an error in state: 1713. +## Ends in an error in state: 1715. ## ## _non_arrowed_class_constructor_type -> LPAREN . class_constructor_type RPAREN [ EQUALGREATER ] ## @@ -5163,7 +5163,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON LPAREN WITH implementation: CLASS LIDENT UNDERSCORE COLON UIDENT DOT WITH ## -## Ends in an error in state: 1682. +## Ends in an error in state: 1684. ## ## clty_longident -> mod_ext_longident DOT . LIDENT [ UNDERSCORE UIDENT SHARP SEMI RPAREN QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF AND ] ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -5177,7 +5177,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON UIDENT DOT WITH implementation: CLASS LIDENT UNDERSCORE COLON UIDENT WITH ## -## Ends in an error in state: 1681. +## Ends in an error in state: 1683. ## ## clty_longident -> mod_ext_longident . DOT LIDENT [ UNDERSCORE UIDENT SHARP SEMI RPAREN QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF AND ] ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -5197,7 +5197,7 @@ implementation: CLASS LIDENT UNDERSCORE COLON UIDENT WITH implementation: FOR UNDERSCORE IN UIDENT TO UIDENT WITH ## -## Ends in an error in state: 774. +## Ends in an error in state: 775. ## ## _expr -> FOR pattern IN simple_expr direction_flag simple_expr . simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr . DOT label_longident [ UIDENT TRUE STRING SHARPOP SHARP PREFIXOP NEW NATIVEINT LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE DOT CHAR BANG BACKQUOTE ] @@ -5216,17 +5216,17 @@ implementation: FOR UNDERSCORE IN UIDENT TO UIDENT WITH ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## implementation: FOR UNDERSCORE WHEN ## -## Ends in an error in state: 768. +## Ends in an error in state: 769. ## ## _expr -> FOR pattern . IN simple_expr direction_flag simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _or_pattern -> pattern . BAR pattern [ IN BAR ] @@ -5238,14 +5238,14 @@ implementation: FOR UNDERSCORE WHEN ## 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 635, spurious reduction of production pattern -> pattern_without_or +## In state 636, spurious reduction of production pattern -> pattern_without_or ## implementation: FUN LIDENTCOLONCOLON UNDERSCORE EQUAL UIDENT WITH ## -## Ends in an error in state: 726. +## Ends in an error in state: 727. ## ## _simple_expr -> simple_expr . DOT label_longident [ UNDERSCORE UIDENT TRUE STRING SHARPOP SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## _simple_expr -> simple_expr . DOT LPAREN expr RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARPOP SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER DOT COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -5264,17 +5264,17 @@ implementation: FUN LIDENTCOLONCOLON UNDERSCORE EQUAL UIDENT WITH ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## implementation: FUN LIDENTCOLONCOLON UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 725. +## Ends in an error in state: 726. ## ## labeled_simple_pattern -> LIDENTCOLONCOLON simple_pattern EQUAL . simple_expr [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## @@ -5286,7 +5286,7 @@ implementation: FUN LIDENTCOLONCOLON UNDERSCORE EQUAL WITH implementation: FUN LIDENTCOLONCOLON UNDERSCORE WITH ## -## Ends in an error in state: 723. +## Ends in an error in state: 724. ## ## labeled_simple_pattern -> LIDENTCOLONCOLON simple_pattern . [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## labeled_simple_pattern -> LIDENTCOLONCOLON simple_pattern . OPTIONAL_NO_DEFAULT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -5300,7 +5300,7 @@ implementation: FUN LIDENTCOLONCOLON UNDERSCORE WITH implementation: FUN LIDENTCOLONCOLON WITH ## -## Ends in an error in state: 722. +## Ends in an error in state: 723. ## ## labeled_simple_pattern -> LIDENTCOLONCOLON . simple_pattern [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## labeled_simple_pattern -> LIDENTCOLONCOLON . simple_pattern OPTIONAL_NO_DEFAULT [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -5314,7 +5314,7 @@ implementation: FUN LIDENTCOLONCOLON WITH implementation: INCLUDE FUN LPAREN UNDERSCORE COLON UIDENT SEMI ## -## Ends in an error in state: 2103. +## Ends in an error in state: 2105. ## ## _module_type -> module_type . WITH with_constraints [ WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> module_type . EQUALGREATER module_type [ WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -5329,23 +5329,23 @@ implementation: INCLUDE FUN LPAREN UNDERSCORE COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## implementation: INCLUDE FUN LPAREN UNDERSCORE COLON WITH ## -## Ends in an error in state: 787. +## Ends in an error in state: 788. ## ## functor_arg -> LPAREN functor_arg_name COLON . module_type RPAREN [ LPAREN EQUALGREATER COLON ] ## @@ -5357,7 +5357,7 @@ implementation: INCLUDE FUN LPAREN UNDERSCORE COLON WITH implementation: INCLUDE FUN LPAREN UNDERSCORE WITH ## -## Ends in an error in state: 786. +## Ends in an error in state: 787. ## ## functor_arg -> LPAREN functor_arg_name . COLON module_type RPAREN [ LPAREN EQUALGREATER COLON ] ## @@ -5369,7 +5369,7 @@ implementation: INCLUDE FUN LPAREN UNDERSCORE WITH implementation: INCLUDE FUN LPAREN WITH ## -## Ends in an error in state: 782. +## Ends in an error in state: 783. ## ## functor_arg -> LPAREN . RPAREN [ LPAREN EQUALGREATER COLON ] ## functor_arg -> LPAREN . functor_arg_name COLON module_type RPAREN [ LPAREN EQUALGREATER COLON ] @@ -5382,7 +5382,7 @@ implementation: INCLUDE FUN LPAREN WITH implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT EQUAL LIDENT RPAREN ## -## Ends in an error in state: 1706. +## Ends in an error in state: 1708. ## ## _class_expr -> class_expr . attribute [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## _constrained_class_declaration -> COLON class_constructor_type EQUAL class_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5394,16 +5394,16 @@ implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT EQUAL LIDENT RPAREN ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT EQUAL WITH ## -## Ends in an error in state: 1705. +## Ends in an error in state: 1707. ## ## _constrained_class_declaration -> COLON class_constructor_type EQUAL . class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5415,7 +5415,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT EQUAL WITH implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT SEMI ## -## Ends in an error in state: 1704. +## Ends in an error in state: 1706. ## ## _constrained_class_declaration -> COLON class_constructor_type . EQUAL class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5426,19 +5426,19 @@ implementation: INCLUDE LBRACE CLASS LIDENT COLON NEW LIDENT SEMI ## 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 1686, spurious reduction of production _class_instance_type -> clty_longident -## In state 1690, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1684, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) -## In state 1688, spurious reduction of production _class_constructor_type -> NEW class_instance_type -## In state 1699, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type -## In state 1697, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) +## In state 1688, spurious reduction of production _class_instance_type -> clty_longident +## In state 1692, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1686, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1690, spurious reduction of production _class_constructor_type -> NEW class_instance_type +## In state 1701, spurious reduction of production mark_position_cty(_class_constructor_type) -> _class_constructor_type +## In state 1699, spurious reduction of production class_constructor_type -> mark_position_cty(_class_constructor_type) ## implementation: INCLUDE LBRACE CLASS LIDENT COLON WITH ## -## Ends in an error in state: 1674. +## Ends in an error in state: 1676. ## ## _constrained_class_declaration -> COLON . class_constructor_type EQUAL class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5450,7 +5450,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT COLON WITH implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT AND WITH ## -## Ends in an error in state: 1890. +## Ends in an error in state: 1892. ## ## and_class_declaration -> AND . class_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -5462,7 +5462,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT AND WITH implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT LBRACKETATAT AND RBRACKET WITH ## -## Ends in an error in state: 1889. +## Ends in an error in state: 1891. ## ## _structure_item_without_item_extension_sugar -> many_class_declarations . [ error SEMI RBRACKET RBRACE EOF ] ## many_class_declarations -> many_class_declarations . and_class_declaration [ error SEMI RBRACKET RBRACE EOF AND ] @@ -5474,16 +5474,16 @@ implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT LBRACKETATAT AND RBRACK ## 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 1307, spurious reduction of production post_item_attributes -> -## In state 1308, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes -## In state 1729, spurious reduction of production many_class_declarations -> CLASS class_declaration_details post_item_attributes +## In state 1309, spurious reduction of production post_item_attributes -> +## In state 1310, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes +## In state 1731, spurious reduction of production many_class_declarations -> CLASS class_declaration_details post_item_attributes ## implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT RPAREN ## -## Ends in an error in state: 1673. +## Ends in an error in state: 1675. ## ## _class_expr -> class_expr . attribute [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## class_declaration_details -> virtual_flag LIDENT class_type_parameters EQUAL class_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5495,16 +5495,16 @@ implementation: INCLUDE LBRACE CLASS LIDENT EQUAL LIDENT RPAREN ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: INCLUDE LBRACE CLASS LIDENT EQUAL WITH ## -## Ends in an error in state: 1457. +## Ends in an error in state: 1459. ## ## class_declaration_details -> virtual_flag LIDENT class_type_parameters EQUAL . class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5516,7 +5516,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT EQUAL WITH implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LIDENT EQUALGREATER LIDENT RPAREN ## -## Ends in an error in state: 1718. +## Ends in an error in state: 1720. ## ## _class_expr -> class_expr . attribute [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## class_fun_return -> COLON non_arrowed_class_constructor_type EQUALGREATER class_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5528,16 +5528,16 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LIDENT EQUALGREATER ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LIDENT EQUALGREATER WITH ## -## Ends in an error in state: 1717. +## Ends in an error in state: 1719. ## ## class_fun_return -> COLON non_arrowed_class_constructor_type EQUALGREATER . class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5549,7 +5549,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LIDENT EQUALGREATER implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LPAREN NEW LIDENT RPAREN WITH ## -## Ends in an error in state: 1716. +## Ends in an error in state: 1718. ## ## class_fun_return -> COLON non_arrowed_class_constructor_type . EQUALGREATER class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5561,7 +5561,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON LPAREN NEW LIDENT R implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON WITH ## -## Ends in an error in state: 1712. +## Ends in an error in state: 1714. ## ## class_fun_return -> COLON . non_arrowed_class_constructor_type EQUALGREATER class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5573,7 +5573,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE COLON WITH implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE EQUALGREATER LIDENT RPAREN ## -## Ends in an error in state: 1711. +## Ends in an error in state: 1713. ## ## _class_expr -> class_expr . attribute [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## class_fun_return -> EQUALGREATER class_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5585,16 +5585,16 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE EQUALGREATER LIDENT RPARE ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1710. +## Ends in an error in state: 1712. ## ## class_fun_return -> EQUALGREATER . class_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5606,7 +5606,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE EQUALGREATER WITH implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE WITH ## -## Ends in an error in state: 1709. +## Ends in an error in state: 1711. ## ## _class_fun_binding -> labeled_simple_pattern . class_fun_binding [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _class_fun_binding -> labeled_simple_pattern . class_fun_return [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5619,7 +5619,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT UNDERSCORE WITH implementation: INCLUDE LBRACE CLASS LIDENT WITH ## -## Ends in an error in state: 1454. +## Ends in an error in state: 1456. ## ## class_declaration_details -> virtual_flag LIDENT class_type_parameters . class_fun_binding [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## class_declaration_details -> virtual_flag LIDENT class_type_parameters . constrained_class_declaration [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5634,7 +5634,7 @@ implementation: INCLUDE LBRACE CLASS LIDENT WITH implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT AND WITH ## -## Ends in an error in state: 1885. +## Ends in an error in state: 1887. ## ## and_class_type_declaration -> AND . class_type_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -5646,7 +5646,7 @@ implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT AND WITH implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT LBRACKETATAT AND RBRACKET WITH ## -## Ends in an error in state: 1884. +## Ends in an error in state: 1886. ## ## _structure_item_without_item_extension_sugar -> many_class_type_declarations . [ error SEMI RBRACKET RBRACE EOF ] ## many_class_type_declarations -> many_class_type_declarations . and_class_type_declaration [ error SEMI RBRACKET RBRACE EOF AND ] @@ -5658,16 +5658,16 @@ implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT LBRACKETATAT AND R ## 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 1307, spurious reduction of production post_item_attributes -> -## In state 1308, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes -## In state 1451, spurious reduction of production many_class_type_declarations -> CLASS TYPE class_type_declaration_details post_item_attributes +## In state 1309, spurious reduction of production post_item_attributes -> +## In state 1310, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes +## In state 1453, spurious reduction of production many_class_type_declarations -> CLASS TYPE class_type_declaration_details post_item_attributes ## implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT RPAREN ## -## Ends in an error in state: 1442. +## Ends in an error in state: 1444. ## ## _class_instance_type -> class_instance_type . attribute [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## class_type_declaration_details -> virtual_flag LIDENT class_type_parameters EQUAL class_instance_type . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5679,16 +5679,16 @@ implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL LIDENT RPAREN ## 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 1419, spurious reduction of production _class_instance_type -> clty_longident -## In state 1425, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1417, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1421, spurious reduction of production _class_instance_type -> clty_longident +## In state 1427, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1419, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) ## implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL WITH ## -## Ends in an error in state: 1364. +## Ends in an error in state: 1366. ## ## class_type_declaration_details -> virtual_flag LIDENT class_type_parameters EQUAL . class_instance_type [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5700,7 +5700,7 @@ implementation: INCLUDE LBRACE CLASS TYPE LIDENT EQUAL WITH implementation: INCLUDE LBRACE CLASS TYPE LIDENT WITH ## -## Ends in an error in state: 1361. +## Ends in an error in state: 1363. ## ## class_type_declaration_details -> virtual_flag LIDENT class_type_parameters . EQUAL class_instance_type [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## class_type_parameters -> class_type_parameters . type_parameter [ QUOTE PLUS MINUS EQUAL ] @@ -5713,7 +5713,7 @@ implementation: INCLUDE LBRACE CLASS TYPE LIDENT WITH implementation: INCLUDE LBRACE CLASS TYPE VIRTUAL WITH ## -## Ends in an error in state: 1359. +## Ends in an error in state: 1361. ## ## class_type_declaration_details -> virtual_flag . LIDENT class_type_parameters EQUAL class_instance_type [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -5725,7 +5725,7 @@ implementation: INCLUDE LBRACE CLASS TYPE VIRTUAL WITH implementation: INCLUDE LBRACE CLASS TYPE WITH ## -## Ends in an error in state: 1358. +## Ends in an error in state: 1360. ## ## many_class_type_declarations -> CLASS TYPE . class_type_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -5737,7 +5737,7 @@ implementation: INCLUDE LBRACE CLASS TYPE WITH implementation: INCLUDE LBRACE CLASS VIRTUAL LET ## -## Ends in an error in state: 1452. +## Ends in an error in state: 1454. ## ## class_declaration_details -> virtual_flag . LIDENT class_type_parameters class_fun_binding [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## class_declaration_details -> virtual_flag . LIDENT class_type_parameters constrained_class_declaration [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -5751,7 +5751,7 @@ implementation: INCLUDE LBRACE CLASS VIRTUAL LET implementation: INCLUDE LBRACE CLASS WITH ## -## Ends in an error in state: 1356. +## Ends in an error in state: 1358. ## ## many_class_declarations -> CLASS . class_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## many_class_type_declarations -> CLASS . TYPE class_type_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] @@ -5764,7 +5764,7 @@ implementation: INCLUDE LBRACE CLASS WITH implementation: INCLUDE LBRACE EXCEPTION LPAREN WITH ## -## Ends in an error in state: 1331. +## Ends in an error in state: 1333. ## ## extension_constructor_declaration -> LPAREN . RPAREN generalized_constructor_arguments attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] ## extension_constructor_rebind -> LPAREN . RPAREN EQUAL constr_longident attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] @@ -5777,7 +5777,7 @@ implementation: INCLUDE LBRACE EXCEPTION LPAREN WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT COLON WITH ## -## Ends in an error in state: 1318. +## Ends in an error in state: 1320. ## ## generalized_constructor_arguments -> COLON . core_type [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF CONSTRAINT BAR AND ] ## @@ -5789,7 +5789,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT COLON WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL LBRACKET WITH ## -## Ends in an error in state: 1313. +## Ends in an error in state: 1315. ## ## constr_longident -> LBRACKET . RBRACKET [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF BAR ] ## @@ -5801,7 +5801,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL LBRACKET WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL LPAREN WITH ## -## Ends in an error in state: 1312. +## Ends in an error in state: 1314. ## ## constr_longident -> LPAREN . RPAREN [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF BAR ] ## @@ -5813,7 +5813,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL LPAREN WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL WITH ## -## Ends in an error in state: 1311. +## Ends in an error in state: 1313. ## ## extension_constructor_rebind -> UIDENT EQUAL . constr_longident attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] ## @@ -5825,7 +5825,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT EQUAL WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT UNDERSCORE COLON WITH ## -## Ends in an error in state: 1321. +## Ends in an error in state: 1323. ## ## generalized_constructor_arguments -> non_arrowed_simple_core_type_list COLON . core_type [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF CONSTRAINT BAR AND ] ## @@ -5837,7 +5837,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT UNDERSCORE COLON WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT UNDERSCORE WITH ## -## Ends in an error in state: 1320. +## Ends in an error in state: 1322. ## ## generalized_constructor_arguments -> non_arrowed_simple_core_type_list . [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF CONSTRAINT BAR AND ] ## generalized_constructor_arguments -> non_arrowed_simple_core_type_list . COLON core_type [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF CONSTRAINT BAR AND ] @@ -5851,7 +5851,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT UNDERSCORE WITH implementation: INCLUDE LBRACE EXCEPTION UIDENT WITH ## -## Ends in an error in state: 1310. +## Ends in an error in state: 1312. ## ## extension_constructor_declaration -> UIDENT . generalized_constructor_arguments attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] ## extension_constructor_rebind -> UIDENT . EQUAL constr_longident attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] @@ -5864,7 +5864,7 @@ implementation: INCLUDE LBRACE EXCEPTION UIDENT WITH implementation: INCLUDE LBRACE EXCEPTION WITH ## -## Ends in an error in state: 1309. +## Ends in an error in state: 1311. ## ## str_exception_declaration -> EXCEPTION . extension_constructor_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## str_exception_declaration -> EXCEPTION . extension_constructor_rebind post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] @@ -5877,7 +5877,7 @@ implementation: INCLUDE LBRACE EXCEPTION WITH implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE EQUAL STRING WITH ## -## Ends in an error in state: 1303. +## Ends in an error in state: 1305. ## ## primitive_declaration -> STRING . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF ] ## primitive_declaration -> STRING . primitive_declaration [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF ] @@ -5890,7 +5890,7 @@ implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE EQUAL STRING WIT implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1302. +## Ends in an error in state: 1304. ## ## _structure_item_without_item_extension_sugar -> EXTERNAL val_ident COLON core_type EQUAL . primitive_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5902,7 +5902,7 @@ implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE EQUAL WITH implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 1301. +## Ends in an error in state: 1303. ## ## _structure_item_without_item_extension_sugar -> EXTERNAL val_ident COLON core_type . EQUAL primitive_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5913,19 +5913,19 @@ implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON WITH ## -## Ends in an error in state: 1300. +## Ends in an error in state: 1302. ## ## _structure_item_without_item_extension_sugar -> EXTERNAL val_ident COLON . core_type EQUAL primitive_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5937,7 +5937,7 @@ implementation: INCLUDE LBRACE EXTERNAL LIDENT COLON WITH implementation: INCLUDE LBRACE EXTERNAL LIDENT WITH ## -## Ends in an error in state: 1299. +## Ends in an error in state: 1301. ## ## _structure_item_without_item_extension_sugar -> EXTERNAL val_ident . COLON core_type EQUAL primitive_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5949,7 +5949,7 @@ implementation: INCLUDE LBRACE EXTERNAL LIDENT WITH implementation: INCLUDE LBRACE EXTERNAL WITH ## -## Ends in an error in state: 1298. +## Ends in an error in state: 1300. ## ## _structure_item_without_item_extension_sugar -> EXTERNAL . val_ident COLON core_type EQUAL primitive_declaration post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5961,7 +5961,7 @@ implementation: INCLUDE LBRACE EXTERNAL WITH implementation: INCLUDE LBRACE MODULE TYPE UIDENT EQUAL WITH ## -## Ends in an error in state: 423. +## Ends in an error in state: 424. ## ## _structure_item_without_item_extension_sugar -> MODULE TYPE option(OF) ident EQUAL . module_type post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -5973,7 +5973,7 @@ implementation: INCLUDE LBRACE MODULE TYPE UIDENT EQUAL WITH implementation: INCLUDE LBRACE MODULE TYPE WITH ## -## Ends in an error in state: 420. +## Ends in an error in state: 421. ## ## _structure_item_without_item_extension_sugar -> MODULE TYPE . option(OF) ident post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## _structure_item_without_item_extension_sugar -> MODULE TYPE . option(OF) ident EQUAL module_type post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] @@ -5986,7 +5986,7 @@ implementation: INCLUDE LBRACE MODULE TYPE WITH implementation: INCLUDE LBRACE MODULE WITH ## -## Ends in an error in state: 419. +## Ends in an error in state: 420. ## ## _structure_item_without_item_extension_sugar -> MODULE . TYPE option(OF) ident post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## _structure_item_without_item_extension_sugar -> MODULE . TYPE option(OF) ident EQUAL module_type post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] @@ -6000,7 +6000,7 @@ implementation: INCLUDE LBRACE MODULE WITH implementation: INCLUDE LPAREN FUN LPAREN RPAREN EQUALGREATER LPAREN RPAREN WHILE ## -## Ends in an error in state: 1168. +## Ends in an error in state: 1170. ## ## _module_expr -> FUN functor_args EQUALGREATER module_expr . [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _module_expr -> module_expr . simple_module_expr [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6015,7 +6015,7 @@ implementation: INCLUDE LPAREN FUN LPAREN RPAREN EQUALGREATER LPAREN RPAREN WHIL implementation: INCLUDE LPAREN FUN LPAREN RPAREN EQUALGREATER WITH ## -## Ends in an error in state: 1166. +## Ends in an error in state: 1168. ## ## _module_expr -> FUN functor_args EQUALGREATER . module_expr [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6027,7 +6027,7 @@ implementation: INCLUDE LPAREN FUN LPAREN RPAREN EQUALGREATER WITH implementation: INCLUDE LPAREN FUN LPAREN RPAREN WITH ## -## Ends in an error in state: 1165. +## Ends in an error in state: 1167. ## ## _module_expr -> FUN functor_args . EQUALGREATER module_expr [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## functor_args -> functor_args . functor_arg [ LPAREN EQUALGREATER ] @@ -6040,7 +6040,7 @@ implementation: INCLUDE LPAREN FUN LPAREN RPAREN WITH implementation: INCLUDE LPAREN FUN WITH ## -## Ends in an error in state: 1164. +## Ends in an error in state: 1166. ## ## _module_expr -> FUN . functor_args EQUALGREATER module_expr [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6052,7 +6052,7 @@ implementation: INCLUDE LPAREN FUN WITH implementation: INCLUDE LPAREN UIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 2089. +## Ends in an error in state: 2091. ## ## _module_type -> module_type . WITH with_constraints [ error WITH RPAREN LBRACKETAT EQUALGREATER ] ## _module_type -> module_type . EQUALGREATER module_type [ error WITH RPAREN LBRACKETAT EQUALGREATER ] @@ -6067,24 +6067,24 @@ implementation: INCLUDE LPAREN UIDENT COLON UIDENT SEMI ## 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 242, spurious reduction of production ident -> UIDENT -## In state 492, spurious reduction of production mty_longident -> ident -## In state 1752, spurious reduction of production _simple_module_type -> mty_longident -## In state 1803, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1799, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1750, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1804, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1800, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1751, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1805, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1801, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 243, spurious reduction of production ident -> UIDENT +## In state 493, spurious reduction of production mty_longident -> ident +## In state 1754, spurious reduction of production _simple_module_type -> mty_longident +## In state 1805, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1801, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1752, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1806, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1802, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1753, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1807, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1803, spurious reduction of production module_type -> mark_position_mty(_module_type) ## implementation: INCLUDE LPAREN UIDENT COLON WITH ## -## Ends in an error in state: 1186. +## Ends in an error in state: 1188. ## ## _simple_module_expr -> LPAREN module_expr COLON . module_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN module_expr COLON . module_type error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6097,7 +6097,7 @@ implementation: INCLUDE LPAREN UIDENT COLON WITH implementation: INCLUDE LPAREN UIDENT WITH ## -## Ends in an error in state: 2442. +## Ends in an error in state: 2444. ## ## _module_expr -> module_expr . simple_module_expr [ error UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] ## _module_expr -> module_expr . LPAREN module_expr error [ error UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] @@ -6114,19 +6114,19 @@ implementation: INCLUDE LPAREN UIDENT WITH ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: INCLUDE LPAREN VAL UIDENT COLON UIDENT COLONGREATER UIDENT COLONGREATER ## -## Ends in an error in state: 1180. +## Ends in an error in state: 1182. ## ## _simple_module_expr -> LPAREN VAL expr COLON package_type COLONGREATER package_type . RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6138,7 +6138,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLON UIDENT COLONGREATER UIDENT COLON ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -6146,7 +6146,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLON UIDENT COLONGREATER UIDENT COLON implementation: INCLUDE LPAREN VAL UIDENT COLON UIDENT COLONGREATER WITH ## -## Ends in an error in state: 1179. +## Ends in an error in state: 1181. ## ## _simple_module_expr -> LPAREN VAL expr COLON package_type COLONGREATER . package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6158,7 +6158,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLON UIDENT COLONGREATER WITH implementation: INCLUDE LPAREN VAL UIDENT COLON WITH ## -## Ends in an error in state: 2440. +## Ends in an error in state: 2442. ## ## _module_expr -> LPAREN VAL expr COLON . error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN VAL expr COLON . package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6172,7 +6172,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLON WITH implementation: INCLUDE LPAREN VAL UIDENT COLONGREATER UIDENT COLONGREATER ## -## Ends in an error in state: 1174. +## Ends in an error in state: 1176. ## ## _simple_module_expr -> LPAREN VAL expr COLONGREATER package_type . RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6184,7 +6184,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLONGREATER UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -6192,7 +6192,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLONGREATER UIDENT COLONGREATER implementation: INCLUDE LPAREN VAL UIDENT COLONGREATER WITH ## -## Ends in an error in state: 2438. +## Ends in an error in state: 2440. ## ## _module_expr -> LPAREN VAL expr COLONGREATER . error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN VAL expr COLONGREATER . package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6205,7 +6205,7 @@ implementation: INCLUDE LPAREN VAL UIDENT COLONGREATER WITH implementation: INCLUDE LPAREN VAL UIDENT SEMI ## -## Ends in an error in state: 2436. +## Ends in an error in state: 2438. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONGREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONGREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] @@ -6246,21 +6246,21 @@ implementation: INCLUDE LPAREN VAL UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: INCLUDE LPAREN VAL WITH ## -## Ends in an error in state: 427. +## Ends in an error in state: 428. ## ## _module_expr -> LPAREN VAL . expr COLON error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _module_expr -> LPAREN VAL . expr COLONGREATER error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6278,7 +6278,7 @@ implementation: INCLUDE LPAREN VAL WITH implementation: INCLUDE LPAREN WITH ## -## Ends in an error in state: 426. +## Ends in an error in state: 427. ## ## _module_expr -> LPAREN . module_expr error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _module_expr -> LPAREN . VAL expr COLON error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6301,7 +6301,7 @@ implementation: INCLUDE LPAREN WITH implementation: INCLUDE UIDENT LBRACE UIDENT EOF ## -## Ends in an error in state: 2094. +## Ends in an error in state: 2096. ## ## _simple_module_expr -> LBRACE structure . RBRACE [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6312,29 +6312,29 @@ implementation: INCLUDE UIDENT LBRACE UIDENT EOF ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item ## implementation: INCLUDE UIDENT LBRACE WITH ## -## Ends in an error in state: 1162. +## Ends in an error in state: 1164. ## ## _simple_module_expr -> LBRACE . structure RBRACE [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6346,7 +6346,7 @@ implementation: INCLUDE UIDENT LBRACE WITH implementation: INCLUDE UIDENT LPAREN UIDENT WITH ## -## Ends in an error in state: 1183. +## Ends in an error in state: 1185. ## ## _module_expr -> module_expr . simple_module_expr [ error UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] ## _module_expr -> module_expr . LPAREN module_expr error [ error UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] @@ -6363,19 +6363,19 @@ implementation: INCLUDE UIDENT LPAREN UIDENT WITH ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: INCLUDE UIDENT LPAREN VAL UIDENT COLON WITH ## -## Ends in an error in state: 1176. +## Ends in an error in state: 1178. ## ## _simple_module_expr -> LPAREN VAL expr COLON . package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN VAL expr COLON . package_type COLONGREATER package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6388,7 +6388,7 @@ implementation: INCLUDE UIDENT LPAREN VAL UIDENT COLON WITH implementation: INCLUDE UIDENT LPAREN VAL UIDENT COLONGREATER WITH ## -## Ends in an error in state: 1173. +## Ends in an error in state: 1175. ## ## _simple_module_expr -> LPAREN VAL expr COLONGREATER . package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## @@ -6400,7 +6400,7 @@ implementation: INCLUDE UIDENT LPAREN VAL UIDENT COLONGREATER WITH implementation: INCLUDE UIDENT LPAREN VAL UIDENT SEMI ## -## Ends in an error in state: 1171. +## Ends in an error in state: 1173. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONGREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONGREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] @@ -6438,21 +6438,21 @@ implementation: INCLUDE UIDENT LPAREN VAL UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: INCLUDE UIDENT LPAREN VAL WITH ## -## Ends in an error in state: 1170. +## Ends in an error in state: 1172. ## ## _simple_module_expr -> LPAREN VAL . expr RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN VAL . expr COLON package_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6467,7 +6467,7 @@ implementation: INCLUDE UIDENT LPAREN VAL WITH implementation: INCLUDE UIDENT LPAREN WITH ## -## Ends in an error in state: 1169. +## Ends in an error in state: 1171. ## ## _module_expr -> module_expr LPAREN . module_expr error [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## _simple_module_expr -> LPAREN . module_expr COLON module_type RPAREN [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] @@ -6487,7 +6487,7 @@ implementation: INCLUDE UIDENT LPAREN WITH implementation: INCLUDE UIDENT WHILE ## -## Ends in an error in state: 1741. +## Ends in an error in state: 1743. ## ## _simple_module_expr -> mod_longident . [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF COLON AND ] ## mod_longident -> mod_longident . DOT UIDENT [ error WITH UIDENT SEMI RPAREN RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EOF DOT COLON AND ] @@ -6500,7 +6500,7 @@ implementation: INCLUDE UIDENT WHILE implementation: INCLUDE WITH ## -## Ends in an error in state: 1163. +## Ends in an error in state: 1165. ## ## _structure_item_without_item_extension_sugar -> INCLUDE . module_expr post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -6512,7 +6512,7 @@ implementation: INCLUDE WITH implementation: LBRACE AS UNDERSCORE SEMI WITH ## -## Ends in an error in state: 1553. +## Ends in an error in state: 1555. ## ## class_self_pattern_and_structure -> class_self_pattern . semi_terminated_class_fields [ error RBRACE ] ## @@ -6524,7 +6524,7 @@ implementation: LBRACE AS UNDERSCORE SEMI WITH implementation: LBRACE AS UNDERSCORE WHEN ## -## Ends in an error in state: 1542. +## Ends in an error in state: 1544. ## ## _class_self_pattern -> AS pattern . SEMI [ error VAL RBRACE PUB PRI LBRACKETPERCENTPERCENT LBRACKETATATAT INITIALIZER INHERIT CONSTRAINT ] ## _or_pattern -> pattern . BAR pattern [ SEMI BAR ] @@ -6536,14 +6536,14 @@ implementation: LBRACE AS UNDERSCORE WHEN ## 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 635, spurious reduction of production pattern -> pattern_without_or +## In state 636, spurious reduction of production pattern -> pattern_without_or ## implementation: LBRACE AS WITH ## -## Ends in an error in state: 1541. +## Ends in an error in state: 1543. ## ## _class_self_pattern -> AS . pattern SEMI [ error VAL RBRACE PUB PRI LBRACKETPERCENTPERCENT LBRACKETATATAT INITIALIZER INHERIT CONSTRAINT ] ## @@ -6555,7 +6555,7 @@ implementation: LBRACE AS WITH implementation: LBRACE CONSTRAINT UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1428. +## Ends in an error in state: 1430. ## ## constrain_field -> core_type EQUAL . core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -6567,7 +6567,7 @@ implementation: LBRACE CONSTRAINT UNDERSCORE EQUAL WITH implementation: LBRACE CONSTRAINT UNDERSCORE WITH ## -## Ends in an error in state: 1427. +## Ends in an error in state: 1429. ## ## constrain_field -> core_type . EQUAL core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -6578,19 +6578,19 @@ implementation: LBRACE CONSTRAINT UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LBRACE CONSTRAINT WITH ## -## Ends in an error in state: 1628. +## Ends in an error in state: 1630. ## ## _class_field -> CONSTRAINT . constrain_field post_item_attributes [ error SEMI RBRACE ] ## @@ -6602,7 +6602,7 @@ implementation: LBRACE CONSTRAINT WITH implementation: LBRACE DOTDOTDOT UIDENT COMMA WITH ## -## Ends in an error in state: 2273. +## Ends in an error in state: 2275. ## ## opt_comma -> COMMA . [ RBRACE ] ## record_expr -> DOTDOTDOT expr_optional_constraint COMMA . lbl_expr_list [ error RBRACE ] @@ -6616,7 +6616,7 @@ implementation: LBRACE DOTDOTDOT UIDENT COMMA WITH implementation: LBRACE DOTDOTDOT UIDENT RBRACKET ## -## Ends in an error in state: 2272. +## Ends in an error in state: 2274. ## ## _simple_expr -> LBRACE DOTDOTDOT expr_optional_constraint . opt_comma RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## record_expr -> DOTDOTDOT expr_optional_constraint . COMMA lbl_expr_list [ error RBRACE ] @@ -6629,22 +6629,22 @@ implementation: LBRACE DOTDOTDOT UIDENT RBRACKET ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2116, spurious reduction of production expr_optional_constraint -> expr +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2118, spurious reduction of production expr_optional_constraint -> expr ## implementation: LBRACE DOTDOTDOT WITH ## -## Ends in an error in state: 2271. +## Ends in an error in state: 2273. ## ## _simple_expr -> LBRACE DOTDOTDOT . expr_optional_constraint opt_comma RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## record_expr -> DOTDOTDOT . expr_optional_constraint COMMA lbl_expr_list [ error RBRACE ] @@ -6658,7 +6658,7 @@ implementation: LBRACE DOTDOTDOT WITH implementation: LBRACE INHERIT BANG WITH ## -## Ends in an error in state: 1622. +## Ends in an error in state: 1624. ## ## _class_field -> INHERIT override_flag . class_expr parent_binder post_item_attributes [ error SEMI RBRACE ] ## @@ -6670,7 +6670,7 @@ implementation: LBRACE INHERIT BANG WITH implementation: LBRACE INHERIT CLASS LIDENT UNDERSCORE WITH ## -## Ends in an error in state: 1527. +## Ends in an error in state: 1529. ## ## _class_expr -> CLASS class_longident non_arrowed_simple_core_type_list . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ error UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EOF COLON AS AND ] @@ -6683,7 +6683,7 @@ implementation: LBRACE INHERIT CLASS LIDENT UNDERSCORE WITH implementation: LBRACE INHERIT CLASS LIDENT WITH ## -## Ends in an error in state: 1526. +## Ends in an error in state: 1528. ## ## _class_expr -> CLASS class_longident . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## _class_expr -> CLASS class_longident . non_arrowed_simple_core_type_list [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] @@ -6696,7 +6696,7 @@ implementation: LBRACE INHERIT CLASS LIDENT WITH implementation: LBRACE INHERIT CLASS WITH ## -## Ends in an error in state: 1525. +## Ends in an error in state: 1527. ## ## _class_expr -> CLASS . class_longident [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## _class_expr -> CLASS . class_longident non_arrowed_simple_core_type_list [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] @@ -6709,7 +6709,7 @@ implementation: LBRACE INHERIT CLASS WITH implementation: LBRACE INHERIT FUN UNDERSCORE EQUALGREATER LBRACKETPERCENT AND RBRACKET WITH ## -## Ends in an error in state: 1534. +## Ends in an error in state: 1536. ## ## _class_expr -> class_expr . attribute [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## _class_fun_def -> labeled_simple_pattern EQUALGREATER class_expr . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] @@ -6722,7 +6722,7 @@ implementation: LBRACE INHERIT FUN UNDERSCORE EQUALGREATER LBRACKETPERCENT AND R implementation: LBRACE INHERIT FUN UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1524. +## Ends in an error in state: 1526. ## ## _class_fun_def -> labeled_simple_pattern EQUALGREATER . class_expr [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## @@ -6734,7 +6734,7 @@ implementation: LBRACE INHERIT FUN UNDERSCORE EQUALGREATER WITH implementation: LBRACE INHERIT FUN UNDERSCORE WITH ## -## Ends in an error in state: 1523. +## Ends in an error in state: 1525. ## ## _class_fun_def -> labeled_simple_pattern . EQUALGREATER class_expr [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## _class_fun_def -> labeled_simple_pattern . class_fun_def [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] @@ -6747,7 +6747,7 @@ implementation: LBRACE INHERIT FUN UNDERSCORE WITH implementation: LBRACE INHERIT FUN WITH ## -## Ends in an error in state: 1521. +## Ends in an error in state: 1523. ## ## _class_expr -> FUN . class_fun_def [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## @@ -6759,7 +6759,7 @@ implementation: LBRACE INHERIT FUN WITH implementation: LBRACE INHERIT LBRACE LET CHAR EQUAL CHAR SEMI WITH ## -## Ends in an error in state: 1547. +## Ends in an error in state: 1549. ## ## _class_expr_lets_and_rest -> let_bindings SEMI . class_expr_lets_and_rest [ error RBRACE ] ## @@ -6771,7 +6771,7 @@ implementation: LBRACE INHERIT LBRACE LET CHAR EQUAL CHAR SEMI WITH implementation: LBRACE INHERIT LBRACE LET CHAR EQUAL CHAR WITH ## -## Ends in an error in state: 1546. +## Ends in an error in state: 1548. ## ## _class_expr_lets_and_rest -> let_bindings . SEMI class_expr_lets_and_rest [ error RBRACE ] ## let_bindings -> let_bindings . and_let_binding [ SEMI AND ] @@ -6783,22 +6783,22 @@ implementation: LBRACE INHERIT LBRACE LET CHAR EQUAL CHAR WITH ## 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 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1516, spurious reduction of production let_binding_body -> pattern EQUAL expr -## In state 1517, spurious reduction of production post_item_attributes -> -## In state 1518, spurious reduction of production let_binding_impl -> LET rec_flag let_binding_body post_item_attributes -## In state 1548, spurious reduction of production let_binding -> let_binding_impl -## In state 1549, spurious reduction of production let_bindings -> let_binding +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1518, spurious reduction of production let_binding_body -> pattern EQUAL expr +## In state 1519, spurious reduction of production post_item_attributes -> +## In state 1520, spurious reduction of production let_binding_impl -> LET rec_flag let_binding_body post_item_attributes +## In state 1550, spurious reduction of production let_binding -> let_binding_impl +## In state 1551, spurious reduction of production let_bindings -> let_binding ## implementation: LBRACE INHERIT LBRACE LET WITH ## -## Ends in an error in state: 1460. +## Ends in an error in state: 1462. ## ## let_binding_impl -> LET . rec_flag let_binding_body post_item_attributes [ SEMI AND ] ## @@ -6810,7 +6810,7 @@ implementation: LBRACE INHERIT LBRACE LET WITH implementation: LBRACE INHERIT LBRACE LIDENT SEMI ## -## Ends in an error in state: 1641. +## Ends in an error in state: 1643. ## ## _class_expr -> class_expr . attribute [ error RBRACE LBRACKETAT ] ## _class_expr_lets_and_rest -> class_expr . [ error RBRACE ] @@ -6822,16 +6822,16 @@ implementation: LBRACE INHERIT LBRACE LIDENT SEMI ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: LBRACE INHERIT LBRACE PERCENT AND WHILE ## -## Ends in an error in state: 1550. +## Ends in an error in state: 1552. ## ## let_binding -> item_extension_sugar . let_binding_impl [ SEMI AND ] ## @@ -6842,15 +6842,15 @@ implementation: LBRACE INHERIT LBRACE PERCENT AND WHILE ## 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 409, spurious reduction of production attr_id -> single_attr_id -## In state 412, spurious reduction of production item_extension_sugar -> PERCENT attr_id +## In state 410, spurious reduction of production attr_id -> single_attr_id +## In state 413, spurious reduction of production item_extension_sugar -> PERCENT attr_id ## implementation: LBRACE INHERIT LBRACE WITH ## -## Ends in an error in state: 1459. +## Ends in an error in state: 1461. ## ## _class_simple_expr -> LBRACE . class_expr_lets_and_rest RBRACE [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] ## _class_simple_expr -> LBRACE . class_expr_lets_and_rest error [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] @@ -6863,7 +6863,7 @@ implementation: LBRACE INHERIT LBRACE WITH implementation: LBRACE INHERIT LIDENT AS WITH ## -## Ends in an error in state: 1624. +## Ends in an error in state: 1626. ## ## parent_binder -> AS . LIDENT [ error SEMI RBRACE LBRACKETATAT ] ## @@ -6875,7 +6875,7 @@ implementation: LBRACE INHERIT LIDENT AS WITH implementation: LBRACE INHERIT LIDENT RPAREN ## -## Ends in an error in state: 1623. +## Ends in an error in state: 1625. ## ## _class_expr -> class_expr . attribute [ error SEMI RBRACE LBRACKETATAT LBRACKETAT AS ] ## _class_field -> INHERIT override_flag class_expr . parent_binder post_item_attributes [ error SEMI RBRACE ] @@ -6887,16 +6887,16 @@ implementation: LBRACE INHERIT LIDENT RPAREN ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: LBRACE INHERIT LIDENT SEMI WITH ## -## Ends in an error in state: 1637. +## Ends in an error in state: 1639. ## ## semi_terminated_class_fields -> class_field SEMI . semi_terminated_class_fields [ error RBRACE ] ## @@ -6908,7 +6908,7 @@ implementation: LBRACE INHERIT LIDENT SEMI WITH implementation: LBRACE INHERIT LIDENT UIDENT STAR ## -## Ends in an error in state: 1532. +## Ends in an error in state: 1534. ## ## _class_expr -> class_simple_expr simple_labeled_expr_list . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## simple_labeled_expr_list -> simple_labeled_expr_list . labeled_simple_expr [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] @@ -6920,20 +6920,20 @@ implementation: LBRACE INHERIT LIDENT UIDENT STAR ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 873, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 886, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 897, spurious reduction of production labeled_simple_expr -> less_aggressive_simple_expression -## In state 900, spurious reduction of production simple_labeled_expr_list -> labeled_simple_expr +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 875, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 888, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 899, spurious reduction of production labeled_simple_expr -> less_aggressive_simple_expression +## In state 902, spurious reduction of production simple_labeled_expr_list -> labeled_simple_expr ## implementation: LBRACE INHERIT LIDENT WITH ## -## Ends in an error in state: 1531. +## Ends in an error in state: 1533. ## ## _class_expr -> class_simple_expr . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] ## _class_expr -> class_simple_expr . simple_labeled_expr_list [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF COLON AS AND ] @@ -6946,7 +6946,7 @@ implementation: LBRACE INHERIT LIDENT WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1668. +## Ends in an error in state: 1670. ## ## _class_constructor_type -> LIDENTCOLONCOLON non_arrowed_core_type EQUALGREATER . class_constructor_type [ error RPAREN ] ## @@ -6958,7 +6958,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON UNDERSCORE E implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON UNDERSCORE WITH ## -## Ends in an error in state: 1667. +## Ends in an error in state: 1669. ## ## _class_constructor_type -> LIDENTCOLONCOLON non_arrowed_core_type . EQUALGREATER class_constructor_type [ error RPAREN ] ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] @@ -6971,7 +6971,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON UNDERSCORE W implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON WITH ## -## Ends in an error in state: 1657. +## Ends in an error in state: 1659. ## ## _class_constructor_type -> LIDENTCOLONCOLON . QUESTION non_arrowed_core_type EQUALGREATER class_constructor_type [ error RPAREN ] ## _class_constructor_type -> LIDENTCOLONCOLON . non_arrowed_core_type EQUALGREATER class_constructor_type [ error RPAREN ] @@ -6984,7 +6984,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1660. +## Ends in an error in state: 1662. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION non_arrowed_core_type EQUALGREATER . class_constructor_type [ error RPAREN ] ## @@ -6996,7 +6996,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION UND implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION UNDERSCORE WITH ## -## Ends in an error in state: 1659. +## Ends in an error in state: 1661. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION non_arrowed_core_type . EQUALGREATER class_constructor_type [ error RPAREN ] ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] @@ -7009,7 +7009,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION UND implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION WITH ## -## Ends in an error in state: 1658. +## Ends in an error in state: 1660. ## ## _class_constructor_type -> LIDENTCOLONCOLON QUESTION . non_arrowed_core_type EQUALGREATER class_constructor_type [ error RPAREN ] ## @@ -7021,7 +7021,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENTCOLONCOLON QUESTION WIT implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENT WITH ## -## Ends in an error in state: 1661. +## Ends in an error in state: 1663. ## ## _class_constructor_type -> non_arrowed_core_type . EQUALGREATER class_constructor_type [ error RPAREN ] ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] @@ -7033,17 +7033,17 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON LIDENT WITH ## 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 275, spurious reduction of production _non_arrowed_simple_core_type -> type_longident -## In state 280, spurious reduction of production mark_position_typ2(_non_arrowed_simple_core_type) -> _non_arrowed_simple_core_type -## In state 278, spurious reduction of production non_arrowed_simple_core_type -> mark_position_typ2(_non_arrowed_simple_core_type) -## In state 282, spurious reduction of production non_arrowed_core_type -> non_arrowed_simple_core_type +## In state 276, spurious reduction of production _non_arrowed_simple_core_type -> type_longident +## In state 281, spurious reduction of production mark_position_typ2(_non_arrowed_simple_core_type) -> _non_arrowed_simple_core_type +## In state 279, spurious reduction of production non_arrowed_simple_core_type -> mark_position_typ2(_non_arrowed_simple_core_type) +## In state 283, spurious reduction of production non_arrowed_core_type -> non_arrowed_simple_core_type ## implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LBRACE WITH ## -## Ends in an error in state: 1366. +## Ends in an error in state: 1368. ## ## _class_instance_type -> LBRACE . class_sig_body RBRACE [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## _class_instance_type -> LBRACE . class_sig_body error [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] @@ -7056,7 +7056,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LBRACE WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT SEMI ## -## Ends in an error in state: 1656. +## Ends in an error in state: 1658. ## ## _class_constructor_type -> NEW class_instance_type . [ error RPAREN ] ## _class_instance_type -> class_instance_type . attribute [ error RPAREN LBRACKETAT ] @@ -7068,16 +7068,16 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT SEMI ## 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 1419, spurious reduction of production _class_instance_type -> clty_longident -## In state 1425, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type -## In state 1417, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) +## In state 1421, spurious reduction of production _class_instance_type -> clty_longident +## In state 1427, spurious reduction of production mark_position_cty(_class_instance_type) -> _class_instance_type +## In state 1419, spurious reduction of production class_instance_type -> mark_position_cty(_class_instance_type) ## implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT UNDERSCORE WITH ## -## Ends in an error in state: 1420. +## Ends in an error in state: 1422. ## ## _class_instance_type -> clty_longident non_arrowed_simple_core_type_list . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## non_arrowed_simple_core_type_list -> non_arrowed_simple_core_type_list . non_arrowed_simple_core_type [ error UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EOF AND ] @@ -7090,7 +7090,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT UNDERSCORE WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT WITH ## -## Ends in an error in state: 1419. +## Ends in an error in state: 1421. ## ## _class_instance_type -> clty_longident . [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] ## _class_instance_type -> clty_longident . non_arrowed_simple_core_type_list [ error SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EOF AND ] @@ -7103,7 +7103,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW LIDENT WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW UIDENT DOT WITH ## -## Ends in an error in state: 1415. +## Ends in an error in state: 1417. ## ## clty_longident -> mod_ext_longident DOT . LIDENT [ error UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EOF AND ] ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -7117,7 +7117,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW UIDENT DOT WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW UIDENT WITH ## -## Ends in an error in state: 1414. +## Ends in an error in state: 1416. ## ## clty_longident -> mod_ext_longident . DOT LIDENT [ error UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EOF AND ] ## mod_ext2 -> mod_ext_longident . DOT UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] @@ -7137,7 +7137,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW UIDENT WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW WITH ## -## Ends in an error in state: 1655. +## Ends in an error in state: 1657. ## ## _class_constructor_type -> NEW . class_instance_type [ error RPAREN ] ## @@ -7149,7 +7149,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON NEW WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1662. +## Ends in an error in state: 1664. ## ## _class_constructor_type -> non_arrowed_core_type EQUALGREATER . class_constructor_type [ error RPAREN ] ## @@ -7161,7 +7161,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON UNDERSCORE EQUALGREATER WITH implementation: LBRACE INHERIT LPAREN LIDENT COLON WITH ## -## Ends in an error in state: 1654. +## Ends in an error in state: 1656. ## ## _class_simple_expr -> LPAREN class_expr COLON . class_constructor_type RPAREN [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] ## _class_simple_expr -> LPAREN class_expr COLON . class_constructor_type error [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] @@ -7174,7 +7174,7 @@ implementation: LBRACE INHERIT LPAREN LIDENT COLON WITH implementation: LBRACE INHERIT LPAREN LIDENT SEMI ## -## Ends in an error in state: 1651. +## Ends in an error in state: 1653. ## ## _class_expr -> class_expr . attribute [ error RPAREN LBRACKETAT COLON ] ## _class_simple_expr -> LPAREN class_expr . COLON class_constructor_type RPAREN [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] @@ -7189,16 +7189,16 @@ implementation: LBRACE INHERIT LPAREN LIDENT SEMI ## 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 1531, spurious reduction of production _class_expr -> class_simple_expr -## In state 1537, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr -## In state 1529, spurious reduction of production class_expr -> mark_position_cl(_class_expr) +## In state 1533, spurious reduction of production _class_expr -> class_simple_expr +## In state 1539, spurious reduction of production mark_position_cl(_class_expr) -> _class_expr +## In state 1531, spurious reduction of production class_expr -> mark_position_cl(_class_expr) ## implementation: LBRACE INHERIT LPAREN WITH ## -## Ends in an error in state: 1458. +## Ends in an error in state: 1460. ## ## _class_simple_expr -> LPAREN . class_expr COLON class_constructor_type RPAREN [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] ## _class_simple_expr -> LPAREN . class_expr COLON class_constructor_type error [ error UIDENT TRUE STRING SEMI RPAREN RBRACKET RBRACE PREFIXOP NEW NATIVEINT LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT FLOAT FALSE EOF COLONCOLONLIDENT COLONCOLON COLON CHAR BANG BACKQUOTE AS AND ] @@ -7213,7 +7213,7 @@ implementation: LBRACE INHERIT LPAREN WITH implementation: LBRACE INHERIT WITH ## -## Ends in an error in state: 1621. +## Ends in an error in state: 1623. ## ## _class_field -> INHERIT . override_flag class_expr parent_binder post_item_attributes [ error SEMI RBRACE ] ## @@ -7225,7 +7225,7 @@ implementation: LBRACE INHERIT WITH implementation: LBRACE INITIALIZER EQUALGREATER WITH ## -## Ends in an error in state: 1618. +## Ends in an error in state: 1620. ## ## _class_field -> INITIALIZER EQUALGREATER . expr post_item_attributes [ error SEMI RBRACE ] ## @@ -7237,7 +7237,7 @@ implementation: LBRACE INITIALIZER EQUALGREATER WITH implementation: LBRACE INITIALIZER WITH ## -## Ends in an error in state: 1617. +## Ends in an error in state: 1619. ## ## _class_field -> INITIALIZER . EQUALGREATER expr post_item_attributes [ error SEMI RBRACE ] ## @@ -7249,7 +7249,7 @@ implementation: LBRACE INITIALIZER WITH implementation: LBRACE LET CHAR EQUAL CHAR SEMI WITH ## -## Ends in an error in state: 2288. +## Ends in an error in state: 2290. ## ## _simple_expr -> LBRACE semi_terminated_seq_expr . RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LBRACE semi_terminated_seq_expr . error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -7261,17 +7261,17 @@ implementation: LBRACE LET CHAR EQUAL CHAR SEMI WITH ## 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 2321, spurious reduction of production opt_semi -> SEMI -## In state 2332, spurious reduction of production _semi_terminated_seq_expr -> let_bindings opt_semi -## In state 2330, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr) -> _semi_terminated_seq_expr -## In state 2319, spurious reduction of production semi_terminated_seq_expr -> mark_position_exp(_semi_terminated_seq_expr) +## In state 2323, spurious reduction of production opt_semi -> SEMI +## In state 2334, spurious reduction of production _semi_terminated_seq_expr -> let_bindings opt_semi +## In state 2332, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr) -> _semi_terminated_seq_expr +## In state 2321, spurious reduction of production semi_terminated_seq_expr -> mark_position_exp(_semi_terminated_seq_expr) ## Expecting "}" to finish the block implementation: LBRACE LET MODULE UIDENT EQUAL UIDENT SEMI WITH ## -## Ends in an error in state: 2316. +## Ends in an error in state: 2318. ## ## _semi_terminated_seq_expr_row -> opt_let_module UIDENT module_binding_body post_item_attributes SEMI . semi_terminated_seq_expr [ error RBRACE ] ## @@ -7283,7 +7283,7 @@ implementation: LBRACE LET MODULE UIDENT EQUAL UIDENT SEMI WITH implementation: LBRACE LET MODULE UIDENT WITH ## -## Ends in an error in state: 2305. +## Ends in an error in state: 2307. ## ## _semi_terminated_seq_expr_row -> opt_let_module UIDENT . module_binding_body post_item_attributes SEMI semi_terminated_seq_expr [ error RBRACE ] ## @@ -7295,7 +7295,7 @@ implementation: LBRACE LET MODULE UIDENT WITH implementation: LBRACE LET MODULE WITH ## -## Ends in an error in state: 2304. +## Ends in an error in state: 2306. ## ## _semi_terminated_seq_expr_row -> opt_let_module . UIDENT module_binding_body post_item_attributes SEMI semi_terminated_seq_expr [ error RBRACE ] ## @@ -7307,7 +7307,7 @@ implementation: LBRACE LET MODULE WITH implementation: LBRACE LET OPEN BANG WITH ## -## Ends in an error in state: 2299. +## Ends in an error in state: 2301. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag . mod_longident post_item_attributes SEMI semi_terminated_seq_expr [ error RBRACE ] ## @@ -7319,7 +7319,7 @@ implementation: LBRACE LET OPEN BANG WITH implementation: LBRACE LET OPEN UIDENT SEMI WITH ## -## Ends in an error in state: 2302. +## Ends in an error in state: 2304. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag mod_longident post_item_attributes SEMI . semi_terminated_seq_expr [ error RBRACE ] ## @@ -7331,7 +7331,7 @@ implementation: LBRACE LET OPEN UIDENT SEMI WITH implementation: LBRACE LET OPEN UIDENT WITH ## -## Ends in an error in state: 2301. +## Ends in an error in state: 2303. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag mod_longident post_item_attributes . SEMI semi_terminated_seq_expr [ error RBRACE ] ## @@ -7342,14 +7342,14 @@ implementation: LBRACE LET OPEN UIDENT WITH ## 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 2300, spurious reduction of production post_item_attributes -> +## In state 2302, spurious reduction of production post_item_attributes -> ## implementation: LBRACE LET OPEN WITH ## -## Ends in an error in state: 2298. +## Ends in an error in state: 2300. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN . override_flag mod_longident post_item_attributes SEMI semi_terminated_seq_expr [ error RBRACE ] ## @@ -7361,7 +7361,7 @@ implementation: LBRACE LET OPEN WITH implementation: LBRACE LET WITH ## -## Ends in an error in state: 468. +## Ends in an error in state: 469. ## ## let_binding_impl -> LET . rec_flag let_binding_body post_item_attributes [ error SEMI RBRACE AND ] ## opt_let_module -> LET . MODULE [ UIDENT ] @@ -7375,7 +7375,7 @@ implementation: LBRACE LET WITH implementation: LBRACE LIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 2170. +## Ends in an error in state: 2172. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -7411,21 +7411,21 @@ implementation: LBRACE LIDENT COLON UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE LIDENT COLON WITH ## -## Ends in an error in state: 2169. +## Ends in an error in state: 2171. ## ## lbl_expr -> label_longident COLON . expr [ COMMA ] ## non_punned_lbl_expression -> label_longident COLON . expr [ error RBRACE ] @@ -7438,7 +7438,7 @@ implementation: LBRACE LIDENT COLON WITH implementation: LBRACE LIDENT COMMA LIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 2159. +## Ends in an error in state: 2161. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -7473,21 +7473,21 @@ implementation: LBRACE LIDENT COMMA LIDENT COLON UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE LIDENT COMMA LIDENT COLON WITH ## -## Ends in an error in state: 2158. +## Ends in an error in state: 2160. ## ## lbl_expr -> label_longident COLON . expr [ error RBRACE COMMA ] ## @@ -7499,7 +7499,7 @@ implementation: LBRACE LIDENT COMMA LIDENT COLON WITH implementation: LBRACE LIDENT COMMA LIDENT COMMA WITH ## -## Ends in an error in state: 2155. +## Ends in an error in state: 2157. ## ## lbl_expr_list -> lbl_expr COMMA . lbl_expr_list [ error RBRACE ] ## lbl_expr_list -> lbl_expr COMMA . [ error RBRACE ] @@ -7512,7 +7512,7 @@ implementation: LBRACE LIDENT COMMA LIDENT COMMA WITH implementation: LBRACE LIDENT COMMA LIDENT WITH ## -## Ends in an error in state: 2157. +## Ends in an error in state: 2159. ## ## lbl_expr -> label_longident . COLON expr [ error RBRACE COMMA ] ## lbl_expr -> label_longident . [ error RBRACE COMMA ] @@ -7525,7 +7525,7 @@ implementation: LBRACE LIDENT COMMA LIDENT WITH implementation: LBRACE LIDENT COMMA WITH ## -## Ends in an error in state: 2166. +## Ends in an error in state: 2168. ## ## lbl_expr_list_that_is_not_a_single_punned_field -> lbl_expr COMMA . lbl_expr_list [ error RBRACE ] ## @@ -7537,7 +7537,7 @@ implementation: LBRACE LIDENT COMMA WITH implementation: LBRACE PUB BANG WITH ## -## Ends in an error in state: 1578. +## Ends in an error in state: 1580. ## ## method_ -> override_flag . VIRTUAL label COLON poly_type [ error SEMI RBRACE LBRACKETATAT ] ## method_ -> override_flag . label curried_binding [ error SEMI RBRACE LBRACKETATAT ] @@ -7553,7 +7553,7 @@ implementation: LBRACE PUB BANG WITH implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL UIDENT RPAREN ## -## Ends in an error in state: 1594. +## Ends in an error in state: 1596. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -7588,21 +7588,21 @@ implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL UIDENT ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1593. +## Ends in an error in state: 1595. ## ## method_ -> override_flag label COLON TYPE lident_list DOT core_type EQUAL . expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7614,7 +7614,7 @@ implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL WITH implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE WITH ## -## Ends in an error in state: 1592. +## Ends in an error in state: 1594. ## ## method_ -> override_flag label COLON TYPE lident_list DOT core_type . EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7625,19 +7625,19 @@ implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT WITH ## -## Ends in an error in state: 1591. +## Ends in an error in state: 1593. ## ## method_ -> override_flag label COLON TYPE lident_list DOT . core_type EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7649,7 +7649,7 @@ implementation: LBRACE PUB LIDENT COLON TYPE LIDENT DOT WITH implementation: LBRACE PUB LIDENT COLON TYPE WITH ## -## Ends in an error in state: 1589. +## Ends in an error in state: 1591. ## ## method_ -> override_flag label COLON TYPE . lident_list DOT core_type EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7661,7 +7661,7 @@ implementation: LBRACE PUB LIDENT COLON TYPE WITH implementation: LBRACE PUB LIDENT COLON UNDERSCORE EQUAL UIDENT RPAREN ## -## Ends in an error in state: 1600. +## Ends in an error in state: 1602. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -7696,21 +7696,21 @@ implementation: LBRACE PUB LIDENT COLON UNDERSCORE EQUAL UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE PUB LIDENT COLON UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1599. +## Ends in an error in state: 1601. ## ## method_ -> override_flag label COLON poly_type EQUAL . expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7722,7 +7722,7 @@ implementation: LBRACE PUB LIDENT COLON UNDERSCORE EQUAL WITH implementation: LBRACE PUB LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 1598. +## Ends in an error in state: 1600. ## ## method_ -> override_flag label COLON poly_type . EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7733,22 +7733,22 @@ implementation: LBRACE PUB LIDENT COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1602, spurious reduction of production _poly_type -> core_type -## In state 1603, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type -## In state 1601, spurious reduction of production poly_type -> mark_position_typ(_poly_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1604, spurious reduction of production _poly_type -> core_type +## In state 1605, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type +## In state 1603, spurious reduction of production poly_type -> mark_position_typ(_poly_type) ## implementation: LBRACE PUB LIDENT COLON WITH ## -## Ends in an error in state: 1588. +## Ends in an error in state: 1590. ## ## method_ -> override_flag label COLON . poly_type EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## method_ -> override_flag label COLON . TYPE lident_list DOT core_type EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] @@ -7761,7 +7761,7 @@ implementation: LBRACE PUB LIDENT COLON WITH implementation: LBRACE PUB LIDENT EQUAL UIDENT RPAREN ## -## Ends in an error in state: 1587. +## Ends in an error in state: 1589. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -7796,21 +7796,21 @@ implementation: LBRACE PUB LIDENT EQUAL UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE PUB LIDENT EQUAL WITH ## -## Ends in an error in state: 1586. +## Ends in an error in state: 1588. ## ## method_ -> override_flag label EQUAL . expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7822,7 +7822,7 @@ implementation: LBRACE PUB LIDENT EQUAL WITH implementation: LBRACE PUB LIDENT EQUALGREATER UIDENT RPAREN ## -## Ends in an error in state: 1636. +## Ends in an error in state: 1638. ## ## semi_terminated_class_fields -> class_field . [ error RBRACE ] ## semi_terminated_class_fields -> class_field . SEMI semi_terminated_class_fields [ error RBRACE ] @@ -7834,27 +7834,27 @@ implementation: LBRACE PUB LIDENT EQUALGREATER UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1585, spurious reduction of production curried_binding -> EQUALGREATER expr -## In state 1611, spurious reduction of production method_ -> override_flag label curried_binding -## In state 1612, spurious reduction of production post_item_attributes -> -## In state 1613, spurious reduction of production _class_field -> PUB method_ post_item_attributes -## In state 1639, spurious reduction of production mark_position_cf(_class_field) -> _class_field -## In state 1632, spurious reduction of production class_field -> mark_position_cf(_class_field) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1587, spurious reduction of production curried_binding -> EQUALGREATER expr +## In state 1613, spurious reduction of production method_ -> override_flag label curried_binding +## In state 1614, spurious reduction of production post_item_attributes -> +## In state 1615, spurious reduction of production _class_field -> PUB method_ post_item_attributes +## In state 1641, spurious reduction of production mark_position_cf(_class_field) -> _class_field +## In state 1634, spurious reduction of production class_field -> mark_position_cf(_class_field) ## implementation: LBRACE PRI VIRTUAL LIDENT COLON WITH ## -## Ends in an error in state: 1581. +## Ends in an error in state: 1583. ## ## method_ -> override_flag VIRTUAL label COLON . poly_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7866,7 +7866,7 @@ implementation: LBRACE PRI VIRTUAL LIDENT COLON WITH implementation: LBRACE PRI VIRTUAL LIDENT WITH ## -## Ends in an error in state: 1580. +## Ends in an error in state: 1582. ## ## method_ -> override_flag VIRTUAL label . COLON poly_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7878,7 +7878,7 @@ implementation: LBRACE PRI VIRTUAL LIDENT WITH implementation: LBRACE PRI VIRTUAL WITH ## -## Ends in an error in state: 1579. +## Ends in an error in state: 1581. ## ## method_ -> override_flag VIRTUAL . label COLON poly_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7890,7 +7890,7 @@ implementation: LBRACE PRI VIRTUAL WITH implementation: LBRACE PRI WITH ## -## Ends in an error in state: 1614. +## Ends in an error in state: 1616. ## ## _class_field -> PRI . method_ post_item_attributes [ error SEMI RBRACE ] ## @@ -7902,7 +7902,7 @@ implementation: LBRACE PRI WITH implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE LIDENT DOT WITH ## -## Ends in an error in state: 1400. +## Ends in an error in state: 1402. ## ## _poly_type -> typevar_list DOT . core_type [ error SEMI RBRACE LBRACKETATAT ] ## @@ -7914,7 +7914,7 @@ implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE LIDENT DOT WITH implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE LIDENT QUOTE LIDENT WITH ## -## Ends in an error in state: 1397. +## Ends in an error in state: 1399. ## ## _poly_type -> typevar_list . DOT core_type [ error SEMI RBRACE LBRACKETATAT ] ## typevar_list -> typevar_list . QUOTE ident [ QUOTE DOT ] @@ -7927,7 +7927,7 @@ implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE LIDENT QUOTE LIDENT WITH implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE WITH ## -## Ends in an error in state: 1395. +## Ends in an error in state: 1397. ## ## _non_arrowed_simple_core_type -> QUOTE . ident [ error SEMI RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER AS ] ## typevar_list -> QUOTE . ident [ QUOTE DOT ] @@ -7940,7 +7940,7 @@ implementation: LBRACE PUB VIRTUAL LIDENT COLON QUOTE WITH implementation: LBRACE PUB WITH ## -## Ends in an error in state: 1577. +## Ends in an error in state: 1579. ## ## _class_field -> PUB . method_ post_item_attributes [ error SEMI RBRACE ] ## @@ -7952,7 +7952,7 @@ implementation: LBRACE PUB WITH implementation: LBRACE PERCENT WITH TYPE ## -## Ends in an error in state: 2323. +## Ends in an error in state: 2325. ## ## _semi_terminated_seq_expr -> item_extension_sugar . semi_terminated_seq_expr_row [ error RBRACE ] ## let_binding -> item_extension_sugar . let_binding_impl [ error SEMI RBRACE AND ] @@ -7964,15 +7964,15 @@ implementation: LBRACE PERCENT WITH TYPE ## 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 409, spurious reduction of production attr_id -> single_attr_id -## In state 412, spurious reduction of production item_extension_sugar -> PERCENT attr_id +## In state 410, spurious reduction of production attr_id -> single_attr_id +## In state 413, spurious reduction of production item_extension_sugar -> PERCENT attr_id ## implementation: LBRACE UIDENT DOT WITH ## -## Ends in an error in state: 2344. +## Ends in an error in state: 2346. ## ## _simple_expr -> mod_longident DOT . LPAREN expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER FLOAT FALSE DOT COLONEQUAL COLONCOLONLIDENT COLONCOLON CHAR BARBAR BANG BACKQUOTE AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT . LPAREN expr_comma_list RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER FLOAT FALSE DOT COLONEQUAL COLONCOLONLIDENT COLONCOLON CHAR BARBAR BANG BACKQUOTE AMPERSAND AMPERAMPER ] @@ -7999,7 +7999,7 @@ implementation: LBRACE UIDENT DOT WITH implementation: LBRACE VAL BANG WITH ## -## Ends in an error in state: 1563. +## Ends in an error in state: 1565. ## ## value -> override_flag . MUTABLE VIRTUAL label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag . MUTABLE VIRTUAL label COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8014,7 +8014,7 @@ implementation: LBRACE VAL BANG WITH implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE EQUAL UIDENT RPAREN ## -## Ends in an error in state: 1576. +## Ends in an error in state: 1578. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -8049,21 +8049,21 @@ implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE EQUAL UIDENT ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE EQUAL WITH ## -## Ends in an error in state: 1575. +## Ends in an error in state: 1577. ## ## value -> override_flag mutable_flag label type_constraint EQUAL . expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -8075,7 +8075,7 @@ implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE EQUAL WITH implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE WITH ## -## Ends in an error in state: 1574. +## Ends in an error in state: 1576. ## ## value -> override_flag mutable_flag label type_constraint . EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -8086,20 +8086,20 @@ implementation: LBRACE VAL LIDENT COLONGREATER LBRACE DOTDOT RBRACE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1142, spurious reduction of production type_constraint -> COLONGREATER core_type +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1144, spurious reduction of production type_constraint -> COLONGREATER core_type ## implementation: LBRACE VAL LIDENT EQUAL UIDENT RPAREN ## -## Ends in an error in state: 1573. +## Ends in an error in state: 1575. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -8134,21 +8134,21 @@ implementation: LBRACE VAL LIDENT EQUAL UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACE VAL LIDENT EQUAL WITH ## -## Ends in an error in state: 1572. +## Ends in an error in state: 1574. ## ## value -> override_flag mutable_flag label EQUAL . expr [ error SEMI RBRACE LBRACKETATAT ] ## @@ -8160,7 +8160,7 @@ implementation: LBRACE VAL LIDENT EQUAL WITH implementation: LBRACE VAL LIDENT WITH ## -## Ends in an error in state: 1571. +## Ends in an error in state: 1573. ## ## value -> override_flag mutable_flag label . EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag mutable_flag label . type_constraint EQUAL expr [ error SEMI RBRACE LBRACKETATAT ] @@ -8173,7 +8173,7 @@ implementation: LBRACE VAL LIDENT WITH implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 1568. +## Ends in an error in state: 1570. ## ## value -> override_flag MUTABLE VIRTUAL label COLON core_type . [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag MUTABLE VIRTUAL label COLON core_type . EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8185,19 +8185,19 @@ implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT COLON UNDERSCORE WITH ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT COLON WITH ## -## Ends in an error in state: 1567. +## Ends in an error in state: 1569. ## ## value -> override_flag MUTABLE VIRTUAL label COLON . core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag MUTABLE VIRTUAL label COLON . core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8210,7 +8210,7 @@ implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT COLON WITH implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT WITH ## -## Ends in an error in state: 1566. +## Ends in an error in state: 1568. ## ## value -> override_flag MUTABLE VIRTUAL label . COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag MUTABLE VIRTUAL label . COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8223,7 +8223,7 @@ implementation: LBRACE VAL MUTABLE VIRTUAL LIDENT WITH implementation: LBRACE VAL MUTABLE VIRTUAL WITH ## -## Ends in an error in state: 1565. +## Ends in an error in state: 1567. ## ## value -> override_flag MUTABLE VIRTUAL . label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> override_flag MUTABLE VIRTUAL . label COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8236,7 +8236,7 @@ implementation: LBRACE VAL MUTABLE VIRTUAL WITH implementation: LBRACE VAL MUTABLE WITH ## -## Ends in an error in state: 1564. +## Ends in an error in state: 1566. ## ## mutable_flag -> MUTABLE . [ LIDENT ] ## value -> override_flag MUTABLE . VIRTUAL label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] @@ -8250,7 +8250,7 @@ implementation: LBRACE VAL MUTABLE WITH implementation: LBRACE VAL VIRTUAL LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 1559. +## Ends in an error in state: 1561. ## ## value -> VIRTUAL mutable_flag label COLON core_type . [ error SEMI RBRACE LBRACKETATAT ] ## value -> VIRTUAL mutable_flag label COLON core_type . EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8262,19 +8262,19 @@ implementation: LBRACE VAL VIRTUAL LIDENT COLON UNDERSCORE WITH ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LBRACE VAL VIRTUAL LIDENT COLON WITH ## -## Ends in an error in state: 1558. +## Ends in an error in state: 1560. ## ## value -> VIRTUAL mutable_flag label COLON . core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> VIRTUAL mutable_flag label COLON . core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8287,7 +8287,7 @@ implementation: LBRACE VAL VIRTUAL LIDENT COLON WITH implementation: LBRACE VAL VIRTUAL LIDENT WITH ## -## Ends in an error in state: 1557. +## Ends in an error in state: 1559. ## ## value -> VIRTUAL mutable_flag label . COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> VIRTUAL mutable_flag label . COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8300,7 +8300,7 @@ implementation: LBRACE VAL VIRTUAL LIDENT WITH implementation: LBRACE VAL VIRTUAL MUTABLE LET ## -## Ends in an error in state: 1556. +## Ends in an error in state: 1558. ## ## value -> VIRTUAL mutable_flag . label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> VIRTUAL mutable_flag . label COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8313,7 +8313,7 @@ implementation: LBRACE VAL VIRTUAL MUTABLE LET implementation: LBRACE VAL VIRTUAL WITH ## -## Ends in an error in state: 1555. +## Ends in an error in state: 1557. ## ## value -> VIRTUAL . mutable_flag label COLON core_type [ error SEMI RBRACE LBRACKETATAT ] ## value -> VIRTUAL . mutable_flag label COLON core_type EQUAL [ error SEMI RBRACE LBRACKETATAT ] @@ -8326,7 +8326,7 @@ implementation: LBRACE VAL VIRTUAL WITH implementation: LBRACE VAL WITH ## -## Ends in an error in state: 1554. +## Ends in an error in state: 1556. ## ## _class_field -> VAL . value post_item_attributes [ error SEMI RBRACE ] ## @@ -8338,7 +8338,7 @@ implementation: LBRACE VAL WITH implementation: LBRACELESS LIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 2505. +## Ends in an error in state: 2507. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -8373,14 +8373,14 @@ implementation: LBRACELESS LIDENT COLON UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## @@ -8399,7 +8399,7 @@ implementation: LBRACELESS LIDENT COLON WITH implementation: LBRACELESS LIDENT COMMA WITH ## -## Ends in an error in state: 459. +## Ends in an error in state: 460. ## ## field_expr_list -> field_expr_list COMMA . field_expr [ error GREATERRBRACE COMMA ] ## opt_comma -> COMMA . [ error GREATERRBRACE ] @@ -8425,7 +8425,7 @@ implementation: LBRACELESS LIDENT WITH implementation: LBRACKET DOTDOTDOT WITH ## -## Ends in an error in state: 2134. +## Ends in an error in state: 2136. ## ## expr_comma_seq_extension -> DOTDOTDOT . expr_optional_constraint RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -8437,7 +8437,7 @@ implementation: LBRACKET DOTDOTDOT WITH implementation: LBRACKET UIDENT SEMI ## -## Ends in an error in state: 2137. +## Ends in an error in state: 2139. ## ## expr_comma_seq_extension -> expr_optional_constraint . opt_comma RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## expr_comma_seq_extension -> expr_optional_constraint . COMMA expr_comma_seq_extension [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -8449,15 +8449,15 @@ implementation: LBRACKET UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2116, spurious reduction of production expr_optional_constraint -> expr +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2118, spurious reduction of production expr_optional_constraint -> expr ## Expecting one of the following: @@ -8466,7 +8466,7 @@ Expecting one of the following: implementation: LBRACKET WITH ## -## Ends in an error in state: 440. +## Ends in an error in state: 441. ## ## _simple_expr -> LBRACKET . expr_comma_seq_extension [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## constr_longident -> LBRACKET . RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -8482,7 +8482,7 @@ Expecting one of the following: implementation: LBRACKETATATAT UNDERSCORE ## -## Ends in an error in state: 739. +## Ends in an error in state: 740. ## ## floating_attribute -> LBRACKETATATAT . attr_id payload RBRACKET [ error SEMI RBRACKET RBRACE EOF ] ## @@ -8494,7 +8494,7 @@ implementation: LBRACKETATATAT UNDERSCORE implementation: LBRACKETATATAT WITH UIDENT RBRACE ## -## Ends in an error in state: 2203. +## Ends in an error in state: 2205. ## ## floating_attribute -> LBRACKETATATAT attr_id payload . RBRACKET [ error SEMI RBRACKET RBRACE EOF ] ## @@ -8505,30 +8505,30 @@ implementation: LBRACKETATATAT WITH UIDENT RBRACE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item -## In state 1860, spurious reduction of production payload -> structure +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item +## In state 1862, spurious reduction of production payload -> structure ## Expecting "]" to finish current floating attribute implementation: LBRACKETBAR BANG WITH ## -## Ends in an error in state: 742. +## Ends in an error in state: 743. ## ## _simple_expr -> BANG . simple_expr [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -8540,7 +8540,7 @@ implementation: LBRACKETBAR BANG WITH implementation: LBRACKETBAR MINUSDOT WITH ## -## Ends in an error in state: 876. +## Ends in an error in state: 878. ## ## _expr -> subtractive . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -8552,7 +8552,7 @@ Expecting an expression implementation: LBRACKETBAR PLUSDOT WITH ## -## Ends in an error in state: 916. +## Ends in an error in state: 918. ## ## _expr -> additive . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -8576,7 +8576,7 @@ Expecting an expression implementation: LBRACKETBAR UIDENT COLON UNDERSCORE COLONGREATER WITH ## -## Ends in an error in state: 1129. +## Ends in an error in state: 1131. ## ## type_constraint_right_of_colon -> core_type COLONGREATER . core_type [ error RPAREN COMMA BARRBRACKET ] ## @@ -8588,7 +8588,7 @@ Expecting a type name implementation: LBRACKETBAR UIDENT COLON WITH ## -## Ends in an error in state: 1126. +## Ends in an error in state: 1128. ## ## type_constraint -> COLON . type_constraint_right_of_colon [ error RPAREN COMMA BARRBRACKET ] ## @@ -8600,7 +8600,7 @@ implementation: LBRACKETBAR UIDENT COLON WITH implementation: LBRACKETBAR UIDENT COLONGREATER WITH ## -## Ends in an error in state: 1124. +## Ends in an error in state: 1126. ## ## type_constraint -> COLONGREATER . core_type [ error RPAREN COMMA BARRBRACKET ] ## @@ -8612,7 +8612,7 @@ implementation: LBRACKETBAR UIDENT COLONGREATER WITH implementation: LBRACKETBAR UIDENT COMMA WITH ## -## Ends in an error in state: 2128. +## Ends in an error in state: 2130. ## ## expr_comma_seq -> expr_comma_seq COMMA . expr_optional_constraint [ error COMMA BARRBRACKET ] ## opt_comma -> COMMA . [ error BARRBRACKET ] @@ -8625,7 +8625,7 @@ implementation: LBRACKETBAR UIDENT COMMA WITH implementation: LBRACKETPERCENTPERCENT UNDERSCORE ## -## Ends in an error in state: 737. +## Ends in an error in state: 738. ## ## item_extension -> LBRACKETPERCENTPERCENT . attr_id payload RBRACKET [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF ] ## @@ -8637,7 +8637,7 @@ implementation: LBRACKETPERCENTPERCENT UNDERSCORE implementation: LBRACKETPERCENTPERCENT WITH COLON WITH ## -## Ends in an error in state: 1354. +## Ends in an error in state: 1356. ## ## payload -> COLON . core_type [ RBRACKET ] ## @@ -8651,7 +8651,7 @@ implementation: LBRACKETPERCENTPERCENT WITH DOT UNDERSCORE ## ## Ends in an error in state: 75. ## -## attr_id -> single_attr_id DOT . attr_id [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id DOT . attr_id [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP POSTFIX PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## single_attr_id DOT @@ -8661,7 +8661,7 @@ implementation: LBRACKETPERCENTPERCENT WITH DOT UNDERSCORE implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE SEMI ## -## Ends in an error in state: 2470. +## Ends in an error in state: 2472. ## ## _or_pattern -> pattern . BAR pattern [ WHEN RBRACKET BAR ] ## payload -> QUESTION pattern . [ RBRACKET ] @@ -8674,14 +8674,14 @@ implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE SEMI ## 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 635, spurious reduction of production pattern -> pattern_without_or +## In state 636, spurious reduction of production pattern -> pattern_without_or ## implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE WHEN UIDENT SEMI ## -## Ends in an error in state: 2472. +## Ends in an error in state: 2474. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -8716,21 +8716,21 @@ implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE WHEN UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE WHEN WITH ## -## Ends in an error in state: 2471. +## Ends in an error in state: 2473. ## ## payload -> QUESTION pattern WHEN . expr [ RBRACKET ] ## @@ -8742,7 +8742,7 @@ implementation: LBRACKETPERCENTPERCENT WITH QUESTION UNDERSCORE WHEN WITH implementation: LBRACKETPERCENTPERCENT WITH QUESTION WITH ## -## Ends in an error in state: 202. +## Ends in an error in state: 203. ## ## payload -> QUESTION . pattern [ RBRACKET ] ## payload -> QUESTION . pattern WHEN expr [ RBRACKET ] @@ -8755,7 +8755,7 @@ implementation: LBRACKETPERCENTPERCENT WITH QUESTION WITH implementation: LBRACKETPERCENTPERCENT WITH UIDENT RBRACE ## -## Ends in an error in state: 2205. +## Ends in an error in state: 2207. ## ## item_extension -> LBRACKETPERCENTPERCENT attr_id payload . RBRACKET [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF ] ## @@ -8766,23 +8766,23 @@ implementation: LBRACKETPERCENTPERCENT WITH UIDENT RBRACE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item -## In state 1860, spurious reduction of production payload -> structure +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item +## In state 1862, spurious reduction of production payload -> structure ## @@ -8791,8 +8791,8 @@ implementation: LBRACKETPERCENTPERCENT WITH WITH ## ## Ends in an error in state: 74. ## -## attr_id -> single_attr_id . [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] -## attr_id -> single_attr_id . DOT attr_id [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id . [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP POSTFIX PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id . DOT attr_id [ error WHILE UIDENT TYPE TRY TRUE SWITCH STRING RBRACKET QUESTION PREFIXOP POSTFIX PLUSDOT PLUS PERCENT OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION COLON CLASS CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## single_attr_id @@ -8802,7 +8802,7 @@ implementation: LBRACKETPERCENTPERCENT WITH WITH implementation: LET CHAR EQUAL CHAR AND WITH ## -## Ends in an error in state: 1895. +## Ends in an error in state: 1897. ## ## and_let_binding -> AND . let_binding_body post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -8814,7 +8814,7 @@ implementation: LET CHAR EQUAL CHAR AND WITH implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE EQUAL UIDENT RPAREN ## -## Ends in an error in state: 2255. +## Ends in an error in state: 2257. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AND AMPERSAND AMPERAMPER ] @@ -8849,21 +8849,21 @@ implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE EQUAL UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 2259. +## Ends in an error in state: 2261. ## ## let_binding_body -> val_ident COLON typevar_list DOT core_type EQUAL . mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8875,7 +8875,7 @@ implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE EQUAL WITH implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE WITH ## -## Ends in an error in state: 2258. +## Ends in an error in state: 2260. ## ## let_binding_body -> val_ident COLON typevar_list DOT core_type . EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8886,19 +8886,19 @@ implementation: LET LIDENT COLON QUOTE LIDENT DOT UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LET LIDENT COLON QUOTE LIDENT DOT WITH ## -## Ends in an error in state: 2257. +## Ends in an error in state: 2259. ## ## let_binding_body -> val_ident COLON typevar_list DOT . core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8910,7 +8910,7 @@ implementation: LET LIDENT COLON QUOTE LIDENT DOT WITH implementation: LET LIDENT COLON QUOTE LIDENT QUOTE LIDENT WITH ## -## Ends in an error in state: 2256. +## Ends in an error in state: 2258. ## ## let_binding_body -> val_ident COLON typevar_list . DOT core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## typevar_list -> typevar_list . QUOTE ident [ QUOTE DOT ] @@ -8923,7 +8923,7 @@ implementation: LET LIDENT COLON QUOTE LIDENT QUOTE LIDENT WITH implementation: LET LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 2253. +## Ends in an error in state: 2255. ## ## let_binding_body -> val_ident COLON TYPE lident_list DOT core_type EQUAL . mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8935,7 +8935,7 @@ implementation: LET LIDENT COLON TYPE LIDENT DOT UNDERSCORE EQUAL WITH implementation: LET LIDENT COLON TYPE LIDENT DOT UNDERSCORE WITH ## -## Ends in an error in state: 2252. +## Ends in an error in state: 2254. ## ## let_binding_body -> val_ident COLON TYPE lident_list DOT core_type . EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8946,19 +8946,19 @@ implementation: LET LIDENT COLON TYPE LIDENT DOT UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LET LIDENT COLON TYPE LIDENT DOT WITH ## -## Ends in an error in state: 2251. +## Ends in an error in state: 2253. ## ## let_binding_body -> val_ident COLON TYPE lident_list DOT . core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8970,7 +8970,7 @@ implementation: LET LIDENT COLON TYPE LIDENT DOT WITH implementation: LET LIDENT COLON TYPE LIDENT WITH ## -## Ends in an error in state: 1486. +## Ends in an error in state: 1488. ## ## lident_list -> LIDENT . [ DOT ] ## lident_list -> LIDENT . lident_list [ DOT ] @@ -8983,7 +8983,7 @@ implementation: LET LIDENT COLON TYPE LIDENT WITH implementation: LET LIDENT COLON TYPE WITH ## -## Ends in an error in state: 2249. +## Ends in an error in state: 2251. ## ## let_binding_body -> val_ident COLON TYPE . lident_list DOT core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -8995,7 +8995,7 @@ implementation: LET LIDENT COLON TYPE WITH implementation: LET LIDENT COLON WITH ## -## Ends in an error in state: 2248. +## Ends in an error in state: 2250. ## ## let_binding_body -> val_ident COLON . typevar_list DOT core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## let_binding_body -> val_ident COLON . TYPE lident_list DOT core_type EQUAL mark_position_exp(expr) [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9009,7 +9009,7 @@ implementation: LET LIDENT COLON WITH implementation: LET LIDENT COLONGREATER UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 2262. +## Ends in an error in state: 2264. ## ## let_binding_body -> val_ident type_constraint EQUAL . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9021,7 +9021,7 @@ implementation: LET LIDENT COLONGREATER UNDERSCORE EQUAL WITH implementation: LET LIDENT COLONGREATER UNDERSCORE WITH ## -## Ends in an error in state: 2261. +## Ends in an error in state: 2263. ## ## let_binding_body -> val_ident type_constraint . EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9032,20 +9032,20 @@ implementation: LET LIDENT COLONGREATER UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1142, spurious reduction of production type_constraint -> COLONGREATER core_type +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1144, spurious reduction of production type_constraint -> COLONGREATER core_type ## implementation: LET LIDENT EQUALGREATER WITH ## -## Ends in an error in state: 2246. +## Ends in an error in state: 2248. ## ## _curried_binding_return_typed -> EQUALGREATER . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9057,7 +9057,7 @@ implementation: LET LIDENT EQUALGREATER WITH implementation: LET LIDENT LPAREN TYPE LIDENT RPAREN WITH ## -## Ends in an error in state: 717. +## Ends in an error in state: 718. ## ## _curried_binding_return_typed -> LPAREN TYPE LIDENT RPAREN . curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9069,7 +9069,7 @@ implementation: LET LIDENT LPAREN TYPE LIDENT RPAREN WITH implementation: LET LIDENT LPAREN TYPE LIDENT WITH ## -## Ends in an error in state: 716. +## Ends in an error in state: 717. ## ## _curried_binding_return_typed -> LPAREN TYPE LIDENT . RPAREN curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9081,7 +9081,7 @@ implementation: LET LIDENT LPAREN TYPE LIDENT WITH implementation: LET LIDENT LPAREN TYPE WITH ## -## Ends in an error in state: 715. +## Ends in an error in state: 716. ## ## _curried_binding_return_typed -> LPAREN TYPE . LIDENT RPAREN curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9093,7 +9093,7 @@ implementation: LET LIDENT LPAREN TYPE WITH implementation: LET LIDENT LPAREN WITH ## -## Ends in an error in state: 714. +## Ends in an error in state: 715. ## ## _curried_binding_return_typed -> LPAREN . TYPE LIDENT RPAREN curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -9116,7 +9116,7 @@ implementation: LET LIDENT LPAREN WITH implementation: LET LIDENT UNDERSCORE COLON UNDERSCORE EQUALGREATER UIDENT RPAREN ## -## Ends in an error in state: 1608. +## Ends in an error in state: 1610. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EOF COLONEQUAL BARBAR AND AMPERSAND AMPERAMPER ] @@ -9151,21 +9151,21 @@ implementation: LET LIDENT UNDERSCORE COLON UNDERSCORE EQUALGREATER UIDENT RPARE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LET LIDENT UNDERSCORE COLON UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1607. +## Ends in an error in state: 1609. ## ## curried_binding_return_typed_ -> COLON non_arrowed_core_type EQUALGREATER . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9177,7 +9177,7 @@ implementation: LET LIDENT UNDERSCORE COLON UNDERSCORE EQUALGREATER WITH implementation: LET LIDENT UNDERSCORE COLON UNDERSCORE WITH ## -## Ends in an error in state: 1606. +## Ends in an error in state: 1608. ## ## _non_arrowed_non_simple_core_type -> non_arrowed_core_type . attribute [ LBRACKETAT EQUALGREATER ] ## curried_binding_return_typed_ -> COLON non_arrowed_core_type . EQUALGREATER expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9191,7 +9191,7 @@ Expecting "=>" to start the function body implementation: LET LIDENT UNDERSCORE COLON WITH ## -## Ends in an error in state: 1605. +## Ends in an error in state: 1607. ## ## curried_binding_return_typed_ -> COLON . non_arrowed_core_type EQUALGREATER expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9203,7 +9203,7 @@ implementation: LET LIDENT UNDERSCORE COLON WITH implementation: LET LIDENT UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 1584. +## Ends in an error in state: 1586. ## ## curried_binding -> EQUALGREATER . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9215,7 +9215,7 @@ Expecting an expression as function body implementation: LET LIDENT UNDERSCORE LPAREN TYPE LIDENT RPAREN WITH ## -## Ends in an error in state: 721. +## Ends in an error in state: 722. ## ## curried_binding -> LPAREN TYPE LIDENT RPAREN . curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9227,7 +9227,7 @@ implementation: LET LIDENT UNDERSCORE LPAREN TYPE LIDENT RPAREN WITH implementation: LET LIDENT UNDERSCORE LPAREN TYPE LIDENT WITH ## -## Ends in an error in state: 720. +## Ends in an error in state: 721. ## ## curried_binding -> LPAREN TYPE LIDENT . RPAREN curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9239,7 +9239,7 @@ implementation: LET LIDENT UNDERSCORE LPAREN TYPE LIDENT WITH implementation: LET LIDENT UNDERSCORE LPAREN TYPE WITH ## -## Ends in an error in state: 719. +## Ends in an error in state: 720. ## ## curried_binding -> LPAREN TYPE . LIDENT RPAREN curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9251,7 +9251,7 @@ implementation: LET LIDENT UNDERSCORE LPAREN TYPE WITH implementation: LET LIDENT UNDERSCORE LPAREN WITH ## -## Ends in an error in state: 718. +## Ends in an error in state: 719. ## ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## _simple_pattern_not_ident -> LPAREN . pattern_two_or_more_comma_list RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -9274,7 +9274,7 @@ implementation: LET LIDENT UNDERSCORE LPAREN WITH implementation: LET LIDENT UNDERSCORE UNDERSCORE WITH ## -## Ends in an error in state: 1604. +## Ends in an error in state: 1606. ## ## curried_binding -> labeled_simple_pattern . curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9286,7 +9286,7 @@ implementation: LET LIDENT UNDERSCORE UNDERSCORE WITH implementation: LET LIDENT UNDERSCORE WITH ## -## Ends in an error in state: 2265. +## Ends in an error in state: 2267. ## ## _curried_binding_return_typed -> labeled_simple_pattern . curried_binding_return_typed_ [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9302,7 +9302,7 @@ Expecting one of the following: implementation: LET LIDENT WITH ## -## Ends in an error in state: 713. +## Ends in an error in state: 714. ## ## _simple_pattern -> val_ident . [ LBRACKETAT EQUAL COLONCOLON BAR AS ] ## let_binding_body -> val_ident . type_constraint EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9318,7 +9318,7 @@ implementation: LET LIDENT WITH implementation: LET MODULE REC UIDENT EQUAL UIDENT AND WITH ## -## Ends in an error in state: 1880. +## Ends in an error in state: 1882. ## ## and_nonlocal_module_bindings -> AND . nonlocal_module_binding_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -9330,7 +9330,7 @@ implementation: LET MODULE REC UIDENT EQUAL UIDENT AND WITH implementation: LET MODULE REC UIDENT EQUAL UIDENT LBRACKETATAT AND RBRACKET WITH ## -## Ends in an error in state: 1879. +## Ends in an error in state: 1881. ## ## _structure_item_without_item_extension_sugar -> many_nonlocal_module_bindings . [ error SEMI RBRACKET RBRACE EOF ] ## many_nonlocal_module_bindings -> many_nonlocal_module_bindings . and_nonlocal_module_bindings [ error SEMI RBRACKET RBRACE EOF AND ] @@ -9342,16 +9342,16 @@ implementation: LET MODULE REC UIDENT EQUAL UIDENT LBRACKETATAT AND RBRACKET WIT ## 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 1307, spurious reduction of production post_item_attributes -> -## In state 1308, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes -## In state 2056, spurious reduction of production many_nonlocal_module_bindings -> opt_let_module REC nonlocal_module_binding_details post_item_attributes +## In state 1309, spurious reduction of production post_item_attributes -> +## In state 1310, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes +## In state 2058, spurious reduction of production many_nonlocal_module_bindings -> opt_let_module REC nonlocal_module_binding_details post_item_attributes ## implementation: LET MODULE REC WITH ## -## Ends in an error in state: 2054. +## Ends in an error in state: 2056. ## ## many_nonlocal_module_bindings -> opt_let_module REC . nonlocal_module_binding_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -9363,7 +9363,7 @@ implementation: LET MODULE REC WITH implementation: LET MODULE UIDENT COLON UIDENT EQUAL UIDENT WITH ## -## Ends in an error in state: 2038. +## Ends in an error in state: 2040. ## ## _module_expr -> module_expr . simple_module_expr [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] ## _module_expr -> module_expr . LPAREN module_expr error [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] @@ -9377,19 +9377,19 @@ implementation: LET MODULE UIDENT COLON UIDENT EQUAL UIDENT WITH ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: LET MODULE UIDENT COLON UIDENT EQUAL WITH ## -## Ends in an error in state: 2037. +## Ends in an error in state: 2039. ## ## module_binding_body_expr -> COLON module_type EQUAL . module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9401,7 +9401,7 @@ implementation: LET MODULE UIDENT COLON UIDENT EQUAL WITH implementation: LET MODULE UIDENT COLON UIDENT SEMI ## -## Ends in an error in state: 2036. +## Ends in an error in state: 2038. ## ## _module_type -> module_type . WITH with_constraints [ WITH LBRACKETAT EQUALGREATER EQUAL ] ## _module_type -> module_type . EQUALGREATER module_type [ WITH LBRACKETAT EQUALGREATER EQUAL ] @@ -9416,23 +9416,23 @@ implementation: LET MODULE UIDENT COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) -## In state 1818, spurious reduction of production _module_type -> non_arrowed_module_type -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 1820, spurious reduction of production _module_type -> non_arrowed_module_type +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## implementation: LET MODULE UIDENT COLON WITH ## -## Ends in an error in state: 1748. +## Ends in an error in state: 1750. ## ## module_binding_body_expr -> COLON . module_type EQUAL module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9444,7 +9444,7 @@ implementation: LET MODULE UIDENT COLON WITH implementation: LET MODULE UIDENT EQUAL UIDENT WITH ## -## Ends in an error in state: 1739. +## Ends in an error in state: 1741. ## ## _module_expr -> module_expr . simple_module_expr [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] ## _module_expr -> module_expr . LPAREN module_expr error [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] @@ -9458,19 +9458,19 @@ implementation: LET MODULE UIDENT EQUAL UIDENT WITH ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: LET MODULE UIDENT EQUAL WITH ## -## Ends in an error in state: 1738. +## Ends in an error in state: 1740. ## ## module_binding_body_expr -> EQUAL . module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9482,7 +9482,7 @@ implementation: LET MODULE UIDENT EQUAL WITH implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT EQUALGREATER UIDENT WITH ## -## Ends in an error in state: 2049. +## Ends in an error in state: 2051. ## ## _module_binding_body_functor -> functor_args COLON non_arrowed_module_type EQUALGREATER module_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _module_expr -> module_expr . simple_module_expr [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] @@ -9496,19 +9496,19 @@ implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT EQUALGREATER UIDENT ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT EQUALGREATER WITH ## -## Ends in an error in state: 2048. +## Ends in an error in state: 2050. ## ## _module_binding_body_functor -> functor_args COLON non_arrowed_module_type EQUALGREATER . module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9520,7 +9520,7 @@ implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT EQUALGREATER WITH implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT SEMI ## -## Ends in an error in state: 2047. +## Ends in an error in state: 2049. ## ## _module_binding_body_functor -> functor_args COLON non_arrowed_module_type . EQUALGREATER module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _module_type -> non_arrowed_module_type . [ WITH LBRACKETAT EQUALGREATER ] @@ -9533,20 +9533,20 @@ implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT SEMI ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident -## In state 1819, spurious reduction of production _simple_module_type -> mty_longident -## In state 1848, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type -## In state 1844, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) -## In state 1817, spurious reduction of production _non_arrowed_module_type -> simple_module_type -## In state 1849, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type -## In state 1845, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) +## In state 808, spurious reduction of production mty_longident -> ident +## In state 1821, spurious reduction of production _simple_module_type -> mty_longident +## In state 1850, spurious reduction of production mark_position_mty(_simple_module_type) -> _simple_module_type +## In state 1846, spurious reduction of production simple_module_type -> mark_position_mty(_simple_module_type) +## In state 1819, spurious reduction of production _non_arrowed_module_type -> simple_module_type +## In state 1851, spurious reduction of production mark_position_mty(_non_arrowed_module_type) -> _non_arrowed_module_type +## In state 1847, spurious reduction of production non_arrowed_module_type -> mark_position_mty(_non_arrowed_module_type) ## implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT WITH TYPE LIDENT COLONEQUAL LBRACE DOTDOT RBRACE SEMI ## -## Ends in an error in state: 2050. +## Ends in an error in state: 2052. ## ## _module_type -> module_type . WITH with_constraints [ WITH LBRACKETAT EQUALGREATER ] ## _module_type -> module_type . EQUALGREATER module_type [ WITH LBRACKETAT EQUALGREATER ] @@ -9559,24 +9559,24 @@ implementation: LET MODULE UIDENT LPAREN RPAREN COLON UIDENT WITH TYPE LIDENT CO ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1826, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type -## In state 1840, spurious reduction of production with_constraints -> with_constraint -## In state 1837, spurious reduction of production _module_type -> module_type WITH with_constraints -## In state 1850, spurious reduction of production mark_position_mty(_module_type) -> _module_type -## In state 1846, spurious reduction of production module_type -> mark_position_mty(_module_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1828, spurious reduction of production with_constraint -> TYPE label_longident optional_type_parameters COLONEQUAL core_type +## In state 1842, spurious reduction of production with_constraints -> with_constraint +## In state 1839, spurious reduction of production _module_type -> module_type WITH with_constraints +## In state 1852, spurious reduction of production mark_position_mty(_module_type) -> _module_type +## In state 1848, spurious reduction of production module_type -> mark_position_mty(_module_type) ## implementation: LET MODULE UIDENT LPAREN RPAREN COLON WITH ## -## Ends in an error in state: 2046. +## Ends in an error in state: 2048. ## ## _module_binding_body_functor -> functor_args COLON . non_arrowed_module_type EQUALGREATER module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9588,7 +9588,7 @@ implementation: LET MODULE UIDENT LPAREN RPAREN COLON WITH implementation: LET MODULE UIDENT LPAREN RPAREN EQUALGREATER UIDENT WITH ## -## Ends in an error in state: 2045. +## Ends in an error in state: 2047. ## ## _module_binding_body_functor -> functor_args EQUALGREATER module_expr . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _module_expr -> module_expr . simple_module_expr [ error UIDENT SEMI RBRACKET RBRACE LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EOF AND ] @@ -9602,19 +9602,19 @@ implementation: LET MODULE UIDENT LPAREN RPAREN EQUALGREATER UIDENT WITH ## 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 1741, spurious reduction of production _simple_module_expr -> mod_longident -## In state 1745, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 1742, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 1167, spurious reduction of production _module_expr -> simple_module_expr -## In state 1747, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 1746, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 1743, spurious reduction of production _simple_module_expr -> mod_longident +## In state 1747, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 1744, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 1169, spurious reduction of production _module_expr -> simple_module_expr +## In state 1749, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 1748, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: LET MODULE UIDENT LPAREN RPAREN EQUALGREATER WITH ## -## Ends in an error in state: 2044. +## Ends in an error in state: 2046. ## ## _module_binding_body_functor -> functor_args EQUALGREATER . module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9626,7 +9626,7 @@ implementation: LET MODULE UIDENT LPAREN RPAREN EQUALGREATER WITH implementation: LET MODULE UIDENT LPAREN RPAREN WITH ## -## Ends in an error in state: 2043. +## Ends in an error in state: 2045. ## ## _module_binding_body_functor -> functor_args . EQUALGREATER module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## _module_binding_body_functor -> functor_args . COLON non_arrowed_module_type EQUALGREATER module_expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9640,7 +9640,7 @@ implementation: LET MODULE UIDENT LPAREN RPAREN WITH implementation: LET MODULE UIDENT WITH ## -## Ends in an error in state: 1737. +## Ends in an error in state: 1739. ## ## nonlocal_module_binding_details -> UIDENT . module_binding_body [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9652,7 +9652,7 @@ implementation: LET MODULE UIDENT WITH implementation: LET MODULE WITH ## -## Ends in an error in state: 1736. +## Ends in an error in state: 1738. ## ## _structure_item_without_item_extension_sugar -> opt_let_module . nonlocal_module_binding_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## many_nonlocal_module_bindings -> opt_let_module . REC nonlocal_module_binding_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] @@ -9665,7 +9665,7 @@ implementation: LET MODULE WITH implementation: LET REC ASSERT ## -## Ends in an error in state: 471. +## Ends in an error in state: 472. ## ## let_binding_impl -> LET rec_flag . let_binding_body post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -9677,7 +9677,7 @@ implementation: LET REC ASSERT implementation: LET UIDENT UNDERSCORE WHEN ## -## Ends in an error in state: 1901. +## Ends in an error in state: 1903. ## ## _or_pattern -> pattern . BAR pattern [ EQUAL BAR ] ## let_binding_body -> pattern . EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9689,17 +9689,17 @@ implementation: LET UIDENT UNDERSCORE WHEN ## 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 631, spurious reduction of production _pattern_without_or -> constr_longident simple_pattern_list -## In state 634, spurious reduction of production mark_position_pat(_pattern_without_or) -> _pattern_without_or -## In state 629, spurious reduction of production pattern_without_or -> mark_position_pat(_pattern_without_or) -## In state 635, spurious reduction of production pattern -> pattern_without_or +## In state 632, spurious reduction of production _pattern_without_or -> constr_longident simple_pattern_list +## In state 635, spurious reduction of production mark_position_pat(_pattern_without_or) -> _pattern_without_or +## In state 630, spurious reduction of production pattern_without_or -> mark_position_pat(_pattern_without_or) +## In state 636, spurious reduction of production pattern -> pattern_without_or ## implementation: LET UNDERSCORE COLON UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1899. +## Ends in an error in state: 1901. ## ## let_binding_body -> simple_pattern_not_ident COLON core_type EQUAL . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9711,7 +9711,7 @@ implementation: LET UNDERSCORE COLON UNDERSCORE EQUAL WITH implementation: LET UNDERSCORE COLON UNDERSCORE WITH ## -## Ends in an error in state: 1898. +## Ends in an error in state: 1900. ## ## let_binding_body -> simple_pattern_not_ident COLON core_type . EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9722,19 +9722,19 @@ implementation: LET UNDERSCORE COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: LET UNDERSCORE COLON WITH ## -## Ends in an error in state: 1897. +## Ends in an error in state: 1899. ## ## let_binding_body -> simple_pattern_not_ident COLON . core_type EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9746,7 +9746,7 @@ implementation: LET UNDERSCORE COLON WITH implementation: LET UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1902. +## Ends in an error in state: 1904. ## ## let_binding_body -> pattern EQUAL . expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -9758,7 +9758,7 @@ implementation: LET UNDERSCORE EQUAL WITH implementation: LET UNDERSCORE WITH ## -## Ends in an error in state: 1896. +## Ends in an error in state: 1898. ## ## _simple_pattern -> simple_pattern_not_ident . [ LBRACKETAT EQUAL COLONCOLON BAR AS ] ## let_binding_body -> simple_pattern_not_ident . COLON core_type EQUAL expr [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -9771,7 +9771,7 @@ implementation: LET UNDERSCORE WITH implementation: LET WITH ## -## Ends in an error in state: 736. +## Ends in an error in state: 737. ## ## let_binding_impl -> LET . rec_flag let_binding_body post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## opt_let_module -> LET . MODULE [ UIDENT REC ] @@ -9784,7 +9784,7 @@ Incomplete let binding implementation: LPAREN ASSERT WITH ## -## Ends in an error in state: 863. +## Ends in an error in state: 865. ## ## _expr -> ASSERT . simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -9796,7 +9796,7 @@ implementation: LPAREN ASSERT WITH implementation: LPAREN BACKQUOTE WITH ## -## Ends in an error in state: 532. +## Ends in an error in state: 533. ## ## name_tag -> BACKQUOTE . ident [ error UNDERSCORE UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -9808,7 +9808,7 @@ implementation: LPAREN BACKQUOTE WITH implementation: LPAREN BANG WITH ## -## Ends in an error in state: 1119. +## Ends in an error in state: 1121. ## ## _simple_expr -> BANG . simple_expr [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP RPAREN QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER FLOAT FALSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARBAR BANG BACKQUOTE AMPERSAND AMPERAMPER ] ## operator -> BANG . [ RPAREN ] @@ -9821,7 +9821,7 @@ implementation: LPAREN BANG WITH implementation: LPAREN FOR UNDERSCORE IN UIDENT TO WITH ## -## Ends in an error in state: 773. +## Ends in an error in state: 774. ## ## _expr -> FOR pattern IN simple_expr direction_flag . simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -9833,7 +9833,7 @@ implementation: LPAREN FOR UNDERSCORE IN UIDENT TO WITH implementation: LPAREN FOR UNDERSCORE IN UIDENT WITH ## -## Ends in an error in state: 770. +## Ends in an error in state: 771. ## ## _expr -> FOR pattern IN simple_expr . direction_flag simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr . DOT label_longident [ TO SHARPOP SHARP DOWNTO DOT ] @@ -9852,17 +9852,17 @@ implementation: LPAREN FOR UNDERSCORE IN UIDENT WITH ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## implementation: LPAREN FOR UNDERSCORE IN WITH ## -## Ends in an error in state: 769. +## Ends in an error in state: 770. ## ## _expr -> FOR pattern IN . simple_expr direction_flag simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -9874,7 +9874,7 @@ implementation: LPAREN FOR UNDERSCORE IN WITH implementation: LPAREN FOR WITH ## -## Ends in an error in state: 767. +## Ends in an error in state: 768. ## ## _expr -> FOR . pattern IN simple_expr direction_flag simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -9886,7 +9886,7 @@ implementation: LPAREN FOR WITH implementation: LPAREN FUN BAR UNDERSCORE EQUALGREATER STRING WITH ## -## Ends in an error in state: 2186. +## Ends in an error in state: 2188. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -9921,17 +9921,17 @@ implementation: LPAREN FUN BAR UNDERSCORE EQUALGREATER STRING WITH ## 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 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN FUN BAR UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 2185. +## Ends in an error in state: 2187. ## ## leading_bar_match_case -> pattern_with_bar EQUALGREATER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -9943,7 +9943,7 @@ implementation: LPAREN FUN BAR UNDERSCORE EQUALGREATER WITH implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT EQUALGREATER STRING WITH ## -## Ends in an error in state: 2184. +## Ends in an error in state: 2186. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -9978,17 +9978,17 @@ implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT EQUALGREATER STRING WITH ## 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 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT EQUALGREATER WITH ## -## Ends in an error in state: 2183. +## Ends in an error in state: 2185. ## ## leading_bar_match_case -> pattern_with_bar WHEN expr EQUALGREATER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10000,7 +10000,7 @@ implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT EQUALGREATER WITH implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT SEMI ## -## Ends in an error in state: 2182. +## Ends in an error in state: 2184. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EQUALGREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EQUALGREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -10035,21 +10035,21 @@ implementation: LPAREN FUN BAR UNDERSCORE WHEN UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN FUN BAR UNDERSCORE WHEN WITH ## -## Ends in an error in state: 2181. +## Ends in an error in state: 2183. ## ## leading_bar_match_case -> pattern_with_bar WHEN . expr EQUALGREATER expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10061,7 +10061,7 @@ implementation: LPAREN FUN BAR UNDERSCORE WHEN WITH implementation: LPAREN FUN LPAREN TYPE LIDENT RPAREN WITH ## -## Ends in an error in state: 761. +## Ends in an error in state: 762. ## ## _expr -> FUN LPAREN TYPE LIDENT RPAREN . fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10073,7 +10073,7 @@ implementation: LPAREN FUN LPAREN TYPE LIDENT RPAREN WITH implementation: LPAREN FUN LPAREN TYPE LIDENT WITH ## -## Ends in an error in state: 760. +## Ends in an error in state: 761. ## ## _expr -> FUN LPAREN TYPE LIDENT . RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10085,7 +10085,7 @@ implementation: LPAREN FUN LPAREN TYPE LIDENT WITH implementation: LPAREN FUN LPAREN TYPE WITH ## -## Ends in an error in state: 759. +## Ends in an error in state: 760. ## ## _expr -> FUN LPAREN TYPE . LIDENT RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10097,7 +10097,7 @@ implementation: LPAREN FUN LPAREN TYPE WITH implementation: LPAREN FUN LPAREN WITH ## -## Ends in an error in state: 758. +## Ends in an error in state: 759. ## ## _expr -> FUN LPAREN . TYPE LIDENT RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -10120,7 +10120,7 @@ implementation: LPAREN FUN LPAREN WITH implementation: LPAREN FUN UNDERSCORE EQUALGREATER STRING WITH ## -## Ends in an error in state: 2171. +## Ends in an error in state: 2173. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -10155,17 +10155,17 @@ implementation: LPAREN FUN UNDERSCORE EQUALGREATER STRING WITH ## 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 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN FUN UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 766. +## Ends in an error in state: 767. ## ## fun_def -> EQUALGREATER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10177,7 +10177,7 @@ implementation: LPAREN FUN UNDERSCORE EQUALGREATER WITH implementation: LPAREN FUN UNDERSCORE LPAREN TYPE LIDENT RPAREN WITH ## -## Ends in an error in state: 765. +## Ends in an error in state: 766. ## ## fun_def -> LPAREN TYPE LIDENT RPAREN . fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10189,7 +10189,7 @@ implementation: LPAREN FUN UNDERSCORE LPAREN TYPE LIDENT RPAREN WITH implementation: LPAREN FUN UNDERSCORE LPAREN TYPE LIDENT WITH ## -## Ends in an error in state: 764. +## Ends in an error in state: 765. ## ## fun_def -> LPAREN TYPE LIDENT . RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10201,7 +10201,7 @@ implementation: LPAREN FUN UNDERSCORE LPAREN TYPE LIDENT WITH implementation: LPAREN FUN UNDERSCORE LPAREN TYPE WITH ## -## Ends in an error in state: 763. +## Ends in an error in state: 764. ## ## fun_def -> LPAREN TYPE . LIDENT RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10213,7 +10213,7 @@ implementation: LPAREN FUN UNDERSCORE LPAREN TYPE WITH implementation: LPAREN FUN UNDERSCORE LPAREN WITH ## -## Ends in an error in state: 762. +## Ends in an error in state: 763. ## ## _simple_pattern_not_ident -> LPAREN . pattern RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] ## _simple_pattern_not_ident -> LPAREN . pattern_two_or_more_comma_list RPAREN [ UNDERSCORE UIDENT TRUE STRING SHARP PLUS NATIVEINT MINUS LPAREN LIDENTCOLONCOLON LIDENT LBRACKETPERCENT LBRACKETBAR LBRACKET LBRACE INT64 INT32 INT FLOAT FALSE EQUALGREATER COLONCOLONLIDENT COLON CHAR BACKQUOTE ] @@ -10236,7 +10236,7 @@ implementation: LPAREN FUN UNDERSCORE LPAREN WITH implementation: LPAREN FUN UNDERSCORE UNDERSCORE WITH ## -## Ends in an error in state: 2176. +## Ends in an error in state: 2178. ## ## fun_def -> labeled_simple_pattern . fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10248,7 +10248,7 @@ implementation: LPAREN FUN UNDERSCORE UNDERSCORE WITH implementation: LPAREN FUN UNDERSCORE WITH ## -## Ends in an error in state: 2190. +## Ends in an error in state: 2192. ## ## _expr -> FUN labeled_simple_pattern . fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10260,7 +10260,7 @@ implementation: LPAREN FUN UNDERSCORE WITH implementation: LPAREN FUN WITH ## -## Ends in an error in state: 757. +## Ends in an error in state: 758. ## ## _expr -> FUN . labeled_simple_pattern fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> FUN . LPAREN TYPE LIDENT RPAREN fun_def [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -10274,7 +10274,7 @@ implementation: LPAREN FUN WITH implementation: LPAREN IF UIDENT UIDENT ELSE WITH ## -## Ends in an error in state: 756. +## Ends in an error in state: 757. ## ## _expr -> IF simple_expr simple_expr ELSE . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10286,7 +10286,7 @@ implementation: LPAREN IF UIDENT UIDENT ELSE WITH implementation: LPAREN IF UIDENT WITH ## -## Ends in an error in state: 751. +## Ends in an error in state: 752. ## ## _expr -> IF simple_expr . simple_expr ELSE expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> IF simple_expr . simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -10306,17 +10306,17 @@ implementation: LPAREN IF UIDENT WITH ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## implementation: LPAREN IF WITH ## -## Ends in an error in state: 750. +## Ends in an error in state: 751. ## ## _expr -> IF . simple_expr simple_expr ELSE expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> IF . simple_expr simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -10329,7 +10329,7 @@ implementation: LPAREN IF WITH implementation: LPAREN LAZY WITH ## -## Ends in an error in state: 741. +## Ends in an error in state: 742. ## ## _expr -> LAZY . simple_expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10341,7 +10341,7 @@ implementation: LPAREN LAZY WITH implementation: LPAREN LBRACE WITH ## -## Ends in an error in state: 465. +## Ends in an error in state: 466. ## ## _simple_expr -> LBRACE . semi_terminated_seq_expr RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LBRACE . semi_terminated_seq_expr error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10361,7 +10361,7 @@ implementation: LPAREN LBRACE WITH implementation: LPAREN LBRACELESS WITH ## -## Ends in an error in state: 456. +## Ends in an error in state: 457. ## ## _simple_expr -> LBRACELESS . field_expr_list opt_comma GREATERRBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LBRACELESS . field_expr_list opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10375,7 +10375,7 @@ implementation: LPAREN LBRACELESS WITH implementation: LPAREN LBRACKET DOTDOTDOT UIDENT COMMA ## -## Ends in an error in state: 2135. +## Ends in an error in state: 2137. ## ## expr_comma_seq_extension -> DOTDOTDOT expr_optional_constraint . RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -10386,22 +10386,22 @@ implementation: LPAREN LBRACKET DOTDOTDOT UIDENT COMMA ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2116, spurious reduction of production expr_optional_constraint -> expr +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2118, spurious reduction of production expr_optional_constraint -> expr ## implementation: LPAREN LBRACKET UIDENT COMMA WITH ## -## Ends in an error in state: 2138. +## Ends in an error in state: 2140. ## ## expr_comma_seq_extension -> expr_optional_constraint COMMA . expr_comma_seq_extension [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## opt_comma -> COMMA . [ RBRACKET ] @@ -10414,7 +10414,7 @@ implementation: LPAREN LBRACKET UIDENT COMMA WITH implementation: LPAREN LBRACKETBAR UIDENT RPAREN ## -## Ends in an error in state: 2403. +## Ends in an error in state: 2405. ## ## _simple_expr -> LBRACKETBAR expr_comma_seq . opt_comma BARRBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LBRACKETBAR expr_comma_seq . opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10427,23 +10427,23 @@ implementation: LPAREN LBRACKETBAR UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1123, spurious reduction of production expr_optional_constraint -> expr -## In state 2126, spurious reduction of production expr_comma_seq -> expr_optional_constraint +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1125, spurious reduction of production expr_optional_constraint -> expr +## In state 2128, spurious reduction of production expr_comma_seq -> expr_optional_constraint ## implementation: LPAREN LBRACKETBAR WITH ## -## Ends in an error in state: 439. +## Ends in an error in state: 440. ## ## _simple_expr -> LBRACKETBAR . expr_comma_seq opt_comma BARRBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LBRACKETBAR . expr_comma_seq opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10457,7 +10457,7 @@ implementation: LPAREN LBRACKETBAR WITH implementation: LPAREN LBRACKETPERCENT UNDERSCORE ## -## Ends in an error in state: 200. +## Ends in an error in state: 201. ## ## extension -> LBRACKETPERCENT . attr_id payload RBRACKET [ error WITH UNDERSCORE UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EQUALGREATER EQUAL EOF ELSE DOT CONSTRAINT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -10469,7 +10469,7 @@ implementation: LPAREN LBRACKETPERCENT UNDERSCORE implementation: LPAREN LBRACKETPERCENT WITH UIDENT RBRACE ## -## Ends in an error in state: 2473. +## Ends in an error in state: 2475. ## ## extension -> LBRACKETPERCENT attr_id payload . RBRACKET [ error WITH UNDERSCORE UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUOTE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EQUALGREATER EQUAL EOF ELSE DOT CONSTRAINT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -10480,30 +10480,30 @@ implementation: LPAREN LBRACKETPERCENT WITH UIDENT RBRACE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item -## In state 1860, spurious reduction of production payload -> structure +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item +## In state 1862, spurious reduction of production payload -> structure ## implementation: LPAREN LIDENT EQUAL WITH ## -## Ends in an error in state: 902. +## Ends in an error in state: 904. ## ## _expr -> label EQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10515,7 +10515,7 @@ implementation: LPAREN LIDENT EQUAL WITH implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT COMMA UIDENT SEMI ## -## Ends in an error in state: 2494. +## Ends in an error in state: 2496. ## ## _expr -> LPAREN COLONCOLON RPAREN LPAREN expr COMMA expr . RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -10550,21 +10550,21 @@ implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT COMMA UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT COMMA WITH ## -## Ends in an error in state: 2493. +## Ends in an error in state: 2495. ## ## _expr -> LPAREN COLONCOLON RPAREN LPAREN expr COMMA . expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10576,7 +10576,7 @@ implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT COMMA WITH implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT SEMI ## -## Ends in an error in state: 2492. +## Ends in an error in state: 2494. ## ## _expr -> LPAREN COLONCOLON RPAREN LPAREN expr . COMMA expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COMMA COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -10611,21 +10611,21 @@ implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN WITH ## -## Ends in an error in state: 2491. +## Ends in an error in state: 2493. ## ## _expr -> LPAREN COLONCOLON RPAREN LPAREN . expr COMMA expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10637,7 +10637,7 @@ implementation: LPAREN LPAREN COLONCOLON RPAREN LPAREN WITH implementation: LPAREN LPAREN COLONCOLON RPAREN WITH ## -## Ends in an error in state: 2490. +## Ends in an error in state: 2492. ## ## _expr -> LPAREN COLONCOLON RPAREN . LPAREN expr COMMA expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10649,7 +10649,7 @@ implementation: LPAREN LPAREN COLONCOLON RPAREN WITH implementation: LPAREN LPAREN COLONCOLON WITH ## -## Ends in an error in state: 2489. +## Ends in an error in state: 2491. ## ## _expr -> LPAREN COLONCOLON . RPAREN LPAREN expr COMMA expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -10661,7 +10661,7 @@ implementation: LPAREN LPAREN COLONCOLON WITH implementation: LPAREN LPAREN MODULE UIDENT WITH ## -## Ends in an error in state: 2483. +## Ends in an error in state: 2485. ## ## _module_expr -> module_expr . simple_module_expr [ UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] ## _module_expr -> module_expr . LPAREN module_expr error [ UIDENT RPAREN LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] @@ -10677,19 +10677,19 @@ implementation: LPAREN LPAREN MODULE UIDENT WITH ## 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 808, spurious reduction of production _simple_module_expr -> mod_longident -## In state 812, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 809, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 790, spurious reduction of production _module_expr -> simple_module_expr -## In state 814, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 813, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 810, spurious reduction of production _simple_module_expr -> mod_longident +## In state 814, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 811, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 791, spurious reduction of production _module_expr -> simple_module_expr +## In state 816, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 815, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: LPAREN LPAREN MODULE WITH ## -## Ends in an error in state: 196. +## Ends in an error in state: 197. ## ## _simple_expr -> LPAREN MODULE . module_expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LPAREN MODULE . module_expr COLON package_type RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10703,7 +10703,7 @@ Expecting a module expression implementation: LPAREN LPAREN UIDENT COMMA CHAR BARRBRACKET ## -## Ends in an error in state: 2496. +## Ends in an error in state: 2498. ## ## _simple_expr -> LPAREN expr_comma_list . opt_comma RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LPAREN expr_comma_list . error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10716,19 +10716,19 @@ implementation: LPAREN LPAREN UIDENT COMMA CHAR BARRBRACKET ## 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 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1123, spurious reduction of production expr_optional_constraint -> expr -## In state 1122, spurious reduction of production expr_comma_list -> expr_optional_constraint COMMA expr_optional_constraint +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1125, spurious reduction of production expr_optional_constraint -> expr +## In state 1124, spurious reduction of production expr_comma_list -> expr_optional_constraint COMMA expr_optional_constraint ## implementation: LPAREN LPAREN WITH ## -## Ends in an error in state: 190. +## Ends in an error in state: 191. ## ## _expr -> LPAREN . COLONCOLON RPAREN LPAREN expr COMMA expr RPAREN [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LPAREN . expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AND AMPERSAND AMPERAMPER ] @@ -10755,10 +10755,10 @@ Expecting one of the following: implementation: LPAREN MINUS WITH ## -## Ends in an error in state: 816. +## Ends in an error in state: 818. ## ## operator -> MINUS . [ RPAREN ] -## subtractive -> MINUS . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] +## subtractive -> MINUS . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## MINUS @@ -10768,10 +10768,10 @@ implementation: LPAREN MINUS WITH implementation: LPAREN MINUSDOT WITH ## -## Ends in an error in state: 815. +## Ends in an error in state: 817. ## ## operator -> MINUSDOT . [ RPAREN ] -## subtractive -> MINUSDOT . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] +## subtractive -> MINUSDOT . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## MINUSDOT @@ -10781,7 +10781,7 @@ implementation: LPAREN MINUSDOT WITH implementation: LPAREN MODULE UIDENT COLON UIDENT COLONGREATER ## -## Ends in an error in state: 2487. +## Ends in an error in state: 2489. ## ## _simple_expr -> LPAREN MODULE module_expr COLON package_type . RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -10793,7 +10793,7 @@ implementation: LPAREN MODULE UIDENT COLON UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -10801,7 +10801,7 @@ implementation: LPAREN MODULE UIDENT COLON UIDENT COLONGREATER implementation: LPAREN MODULE UIDENT COLON WITH ## -## Ends in an error in state: 2485. +## Ends in an error in state: 2487. ## ## _simple_expr -> LPAREN MODULE module_expr COLON . package_type RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> LPAREN MODULE module_expr COLON . error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -10852,9 +10852,9 @@ implementation: LPAREN NEW WITH implementation: LPAREN PLUS WITH ## -## Ends in an error in state: 193. +## Ends in an error in state: 194. ## -## additive -> PLUS . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] +## additive -> PLUS . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] ## operator -> PLUS . [ RPAREN ] ## ## The known suffix of the stack is as follows: @@ -10865,9 +10865,9 @@ implementation: LPAREN PLUS WITH implementation: LPAREN PLUSDOT WITH ## -## Ends in an error in state: 192. +## Ends in an error in state: 193. ## -## additive -> PLUSDOT . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] +## additive -> PLUSDOT . [ WHILE UIDENT TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENT LESSIDENT LESSGREATER LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT IF FUN FOR FLOAT FALSE CHAR BANG BACKQUOTE ASSERT ] ## operator -> PLUSDOT . [ RPAREN ] ## ## The known suffix of the stack is as follows: @@ -10891,7 +10891,7 @@ implementation: LPAREN PREFIXOP WITH implementation: LPAREN STAR WITH ## -## Ends in an error in state: 575. +## Ends in an error in state: 576. ## ## val_ident -> LPAREN operator . RPAREN [ error UNDERSCORE UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -10903,7 +10903,7 @@ implementation: LPAREN STAR WITH implementation: LPAREN UIDENT COLON UNDERSCORE COLONGREATER WITH ## -## Ends in an error in state: 1146. +## Ends in an error in state: 1148. ## ## type_constraint_right_of_colon -> core_type COLONGREATER . core_type [ RPAREN RBRACKET RBRACE EQUAL COMMA ] ## @@ -10915,7 +10915,7 @@ implementation: LPAREN UIDENT COLON UNDERSCORE COLONGREATER WITH implementation: LPAREN UIDENT COLON WITH ## -## Ends in an error in state: 1143. +## Ends in an error in state: 1145. ## ## type_constraint -> COLON . type_constraint_right_of_colon [ RPAREN RBRACKET RBRACE EQUAL COMMA ] ## @@ -10927,7 +10927,7 @@ implementation: LPAREN UIDENT COLON WITH implementation: LPAREN UIDENT COLONGREATER LBRACE DOTDOT RBRACE WITH ## -## Ends in an error in state: 1120. +## Ends in an error in state: 1122. ## ## expr_comma_list -> expr_optional_constraint . COMMA expr_optional_constraint [ error RPAREN COMMA ] ## @@ -10938,21 +10938,21 @@ implementation: LPAREN UIDENT COLONGREATER LBRACE DOTDOT RBRACE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1142, spurious reduction of production type_constraint -> COLONGREATER core_type -## In state 2503, spurious reduction of production expr_optional_constraint -> expr type_constraint +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1144, spurious reduction of production type_constraint -> COLONGREATER core_type +## In state 2505, spurious reduction of production expr_optional_constraint -> expr type_constraint ## implementation: LPAREN UIDENT COLONGREATER WITH ## -## Ends in an error in state: 1141. +## Ends in an error in state: 1143. ## ## type_constraint -> COLONGREATER . core_type [ RPAREN RBRACKET RBRACE EQUAL COMMA ] ## @@ -10964,7 +10964,7 @@ implementation: LPAREN UIDENT COLONGREATER WITH implementation: LPAREN UIDENT COMMA CHAR COMMA WITH ## -## Ends in an error in state: 1134. +## Ends in an error in state: 1136. ## ## expr_comma_list -> expr_comma_list COMMA . expr_optional_constraint [ error RPAREN COMMA ] ## opt_comma -> COMMA . [ RPAREN ] @@ -10977,7 +10977,7 @@ implementation: LPAREN UIDENT COMMA CHAR COMMA WITH implementation: LPAREN UIDENT COMMA WITH ## -## Ends in an error in state: 1121. +## Ends in an error in state: 1123. ## ## expr_comma_list -> expr_optional_constraint COMMA . expr_optional_constraint [ error RPAREN COMMA ] ## @@ -10989,7 +10989,7 @@ implementation: LPAREN UIDENT COMMA WITH implementation: OPEN BANG WITH ## -## Ends in an error in state: 415. +## Ends in an error in state: 416. ## ## open_statement -> OPEN override_flag . mod_longident post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -11001,7 +11001,7 @@ implementation: OPEN BANG WITH implementation: OPEN WITH ## -## Ends in an error in state: 413. +## Ends in an error in state: 414. ## ## open_statement -> OPEN . override_flag mod_longident post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -11013,9 +11013,9 @@ implementation: OPEN WITH implementation: PERCENT UNDERSCORE ## -## Ends in an error in state: 358. +## Ends in an error in state: 359. ## -## item_extension_sugar -> PERCENT . attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] +## item_extension_sugar -> PERCENT . attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## PERCENT @@ -11025,9 +11025,9 @@ implementation: PERCENT UNDERSCORE implementation: PERCENT WITH DOT UNDERSCORE ## -## Ends in an error in state: 410. +## Ends in an error in state: 411. ## -## attr_id -> single_attr_id DOT . attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id DOT . attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## single_attr_id DOT @@ -11037,10 +11037,10 @@ implementation: PERCENT WITH DOT UNDERSCORE implementation: PERCENT WITH WITH ## -## Ends in an error in state: 409. +## Ends in an error in state: 410. ## -## attr_id -> single_attr_id . [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] -## attr_id -> single_attr_id . DOT attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id . [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] +## attr_id -> single_attr_id . DOT attr_id [ WHILE UIDENT TYPE TRY TRUE SWITCH STRING PREFIXOP POSTFIX PLUSDOT PLUS OPEN NEW NATIVEINT MODULE MINUSDOT MINUS LPAREN LIDENT LET LESSIDENT LESSGREATER LBRACKETPERCENTPERCENT LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATATAT LBRACKET LBRACELESS LBRACE LAZY INT64 INT32 INT INCLUDE IF FUN FOR FLOAT FALSE EXTERNAL EXCEPTION CLASS CHAR BANG BACKQUOTE ASSERT ] ## ## The known suffix of the stack is as follows: ## single_attr_id @@ -11050,7 +11050,7 @@ implementation: PERCENT WITH WITH implementation: STRING LIDENTCOLONCOLON WITH ## -## Ends in an error in state: 884. +## Ends in an error in state: 886. ## ## label_expr -> LIDENTCOLONCOLON . less_aggressive_simple_expression [ error UIDENT TRUE STRING STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## label_expr -> LIDENTCOLONCOLON . QUESTION less_aggressive_simple_expression [ error UIDENT TRUE STRING STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -11063,7 +11063,7 @@ implementation: STRING LIDENTCOLONCOLON WITH implementation: STRING LIDENTCOLONCOLON QUESTION WITH ## -## Ends in an error in state: 885. +## Ends in an error in state: 887. ## ## label_expr -> LIDENTCOLONCOLON QUESTION . less_aggressive_simple_expression [ error UIDENT TRUE STRING STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -11075,7 +11075,7 @@ implementation: STRING LIDENTCOLONCOLON QUESTION WITH implementation: STRING WITH ## -## Ends in an error in state: 1731. +## Ends in an error in state: 1733. ## ## structure -> structure_item . [ RBRACKET RBRACE EOF ] ## structure -> structure_item . error structure [ RBRACKET RBRACE EOF ] @@ -11088,24 +11088,24 @@ implementation: STRING WITH ## 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 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) ## Incomplete statement. Did you forget a ";"? implementation: SWITCH UIDENT LBRACE WITH ## -## Ends in an error in state: 2529. +## Ends in an error in state: 2531. ## ## _expr -> SWITCH simple_expr LBRACE . leading_bar_match_cases_to_sequence_body RBRACE [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11117,7 +11117,7 @@ implementation: SWITCH UIDENT LBRACE WITH implementation: SWITCH UIDENT WITH ## -## Ends in an error in state: 2528. +## Ends in an error in state: 2530. ## ## _expr -> SWITCH simple_expr . LBRACE leading_bar_match_cases_to_sequence_body RBRACE [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr . DOT label_longident [ SHARPOP SHARP LBRACE DOT ] @@ -11136,10 +11136,10 @@ implementation: SWITCH UIDENT WITH ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## @@ -11158,7 +11158,7 @@ implementation: SWITCH WITH implementation: TRUE DOT LBRACE UIDENT RBRACE EQUAL WITH ## -## Ends in an error in state: 1060. +## Ends in an error in state: 1062. ## ## _expr -> simple_expr DOT LBRACE expr RBRACE EQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11170,7 +11170,7 @@ implementation: TRUE DOT LBRACE UIDENT RBRACE EQUAL WITH implementation: TRUE DOT LBRACE UIDENT SEMI ## -## Ends in an error in state: 1058. +## Ends in an error in state: 1060. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -11206,21 +11206,21 @@ implementation: TRUE DOT LBRACE UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: TRUE DOT LBRACE WITH ## -## Ends in an error in state: 1057. +## Ends in an error in state: 1059. ## ## _expr -> simple_expr DOT LBRACE . expr RBRACE EQUAL expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT LBRACE . expr RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AND AMPERSAND AMPERAMPER ] @@ -11233,7 +11233,7 @@ implementation: TRUE DOT LBRACE WITH implementation: TRUE DOT LBRACKET UIDENT RBRACKET EQUAL WITH ## -## Ends in an error in state: 1055. +## Ends in an error in state: 1057. ## ## _expr -> simple_expr DOT LBRACKET expr RBRACKET EQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11245,7 +11245,7 @@ implementation: TRUE DOT LBRACKET UIDENT RBRACKET EQUAL WITH implementation: TRUE DOT LBRACKET UIDENT SEMI ## -## Ends in an error in state: 1052. +## Ends in an error in state: 1054. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -11282,21 +11282,21 @@ implementation: TRUE DOT LBRACKET UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: TRUE DOT LBRACKET WITH ## -## Ends in an error in state: 1051. +## Ends in an error in state: 1053. ## ## _expr -> simple_expr DOT LBRACKET . expr RBRACKET EQUAL expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT LBRACKET . expr RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AND AMPERSAND AMPERAMPER ] @@ -11310,7 +11310,7 @@ implementation: TRUE DOT LBRACKET WITH implementation: TRUE DOT LIDENT EQUAL WITH ## -## Ends in an error in state: 1063. +## Ends in an error in state: 1065. ## ## _expr -> simple_expr DOT label_longident EQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11322,7 +11322,7 @@ implementation: TRUE DOT LIDENT EQUAL WITH implementation: TRUE DOT LPAREN UIDENT RPAREN EQUAL WITH ## -## Ends in an error in state: 1049. +## Ends in an error in state: 1051. ## ## _expr -> simple_expr DOT LPAREN expr RPAREN EQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11334,7 +11334,7 @@ implementation: TRUE DOT LPAREN UIDENT RPAREN EQUAL WITH implementation: TRUE DOT LPAREN UIDENT SEMI ## -## Ends in an error in state: 1046. +## Ends in an error in state: 1048. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -11371,21 +11371,21 @@ implementation: TRUE DOT LPAREN UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: TRUE DOT LPAREN WITH ## -## Ends in an error in state: 879. +## Ends in an error in state: 881. ## ## _expr -> simple_expr DOT LPAREN . expr RPAREN EQUAL expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT LPAREN . expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AND AMPERSAND AMPERAMPER ] @@ -11399,7 +11399,7 @@ implementation: TRUE DOT LPAREN WITH implementation: TRUE DOT UIDENT DOT WITH ## -## Ends in an error in state: 503. +## Ends in an error in state: 504. ## ## label_longident -> mod_longident DOT . LIDENT [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EQUAL EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## mod_longident -> mod_longident DOT . UIDENT [ DOT ] @@ -11412,7 +11412,7 @@ implementation: TRUE DOT UIDENT DOT WITH implementation: TRUE DOT UIDENT WITH ## -## Ends in an error in state: 502. +## Ends in an error in state: 503. ## ## label_longident -> mod_longident . DOT LIDENT [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EQUAL EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## mod_longident -> mod_longident . DOT UIDENT [ DOT ] @@ -11425,7 +11425,7 @@ implementation: TRUE DOT UIDENT WITH implementation: TRUE DOT WITH ## -## Ends in an error in state: 878. +## Ends in an error in state: 880. ## ## _expr -> simple_expr DOT . label_longident EQUAL expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> simple_expr DOT . LPAREN expr RPAREN EQUAL expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -11446,7 +11446,7 @@ implementation: TRUE DOT WITH implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER CHAR BAR WITH ## -## Ends in an error in state: 1100. +## Ends in an error in state: 1102. ## ## pattern_with_bar -> BAR . pattern [ WHEN EQUALGREATER ] ## @@ -11458,7 +11458,7 @@ Expecting a match case implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT EQUAL UIDENT RBRACKET ## -## Ends in an error in state: 808. +## Ends in an error in state: 810. ## ## _simple_module_expr -> mod_longident . [ WITH UIDENT SEMI RPAREN LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EQUAL EOF COLON AND ] ## mod_longident -> mod_longident . DOT UIDENT [ WITH UIDENT SEMI RPAREN LPAREN LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE EQUALGREATER EQUAL EOF DOT COLON AND ] @@ -11471,7 +11471,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT EQUAL UIDENT SEMI WITH ## -## Ends in an error in state: 2378. +## Ends in an error in state: 2380. ## ## _semi_terminated_seq_expr_row -> opt_let_module UIDENT module_binding_body post_item_attributes SEMI . semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11483,7 +11483,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT WITH ## -## Ends in an error in state: 2375. +## Ends in an error in state: 2377. ## ## _semi_terminated_seq_expr_row -> opt_let_module UIDENT . module_binding_body post_item_attributes SEMI semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11495,7 +11495,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE UIDENT implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE WITH ## -## Ends in an error in state: 2374. +## Ends in an error in state: 2376. ## ## _semi_terminated_seq_expr_row -> opt_let_module . UIDENT module_binding_body post_item_attributes SEMI semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11507,7 +11507,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET MODULE WITH implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN BANG WITH ## -## Ends in an error in state: 2369. +## Ends in an error in state: 2371. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag . mod_longident post_item_attributes SEMI semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11519,7 +11519,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN BANG WITH implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN UIDENT SEMI WITH ## -## Ends in an error in state: 2372. +## Ends in an error in state: 2374. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag mod_longident post_item_attributes SEMI . semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11531,7 +11531,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN UIDENT SE implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN UIDENT WITH ## -## Ends in an error in state: 2371. +## Ends in an error in state: 2373. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN override_flag mod_longident post_item_attributes . SEMI semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11542,14 +11542,14 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN UIDENT WI ## 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 2370, spurious reduction of production post_item_attributes -> +## In state 2372, spurious reduction of production post_item_attributes -> ## implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN WITH ## -## Ends in an error in state: 2368. +## Ends in an error in state: 2370. ## ## _semi_terminated_seq_expr_row -> option(LET) OPEN . override_flag mod_longident post_item_attributes SEMI semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11561,7 +11561,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET OPEN WITH implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET WITH ## -## Ends in an error in state: 2364. +## Ends in an error in state: 2366. ## ## let_binding_impl -> LET . rec_flag let_binding_body post_item_attributes [ SEMI RBRACE BAR AND ] ## opt_let_module -> LET . MODULE [ UIDENT ] @@ -11575,7 +11575,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER LET WITH implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER PERCENT AND TYPE ## -## Ends in an error in state: 2385. +## Ends in an error in state: 2387. ## ## _semi_terminated_seq_expr -> item_extension_sugar . semi_terminated_seq_expr_row [ RBRACE BAR ] ## let_binding -> item_extension_sugar . let_binding_impl [ SEMI RBRACE BAR AND ] @@ -11587,15 +11587,15 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER PERCENT AND TYPE ## 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 409, spurious reduction of production attr_id -> single_attr_id -## In state 412, spurious reduction of production item_extension_sugar -> PERCENT attr_id +## In state 410, spurious reduction of production attr_id -> single_attr_id +## In state 413, spurious reduction of production item_extension_sugar -> PERCENT attr_id ## implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER UIDENT RPAREN ## -## Ends in an error in state: 2671. +## Ends in an error in state: 2673. ## ## _expr -> TRY simple_expr LBRACE leading_bar_match_cases_to_sequence_body . RBRACE [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## leading_bar_match_cases_to_sequence_body -> leading_bar_match_cases_to_sequence_body . leading_bar_match_case_to_sequence_body [ RBRACE BAR ] @@ -11607,24 +11607,24 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER UIDENT RPAREN ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2387, spurious reduction of production post_item_attributes -> -## In state 2388, spurious reduction of production opt_semi -> -## In state 2393, spurious reduction of production _semi_terminated_seq_expr_row -> expr post_item_attributes opt_semi -## In state 2391, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr_row) -> _semi_terminated_seq_expr_row -## In state 2380, spurious reduction of production semi_terminated_seq_expr_row -> mark_position_exp(_semi_terminated_seq_expr_row) -## In state 2365, spurious reduction of production _semi_terminated_seq_expr -> semi_terminated_seq_expr_row -## In state 2392, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr) -> _semi_terminated_seq_expr -## In state 2381, spurious reduction of production semi_terminated_seq_expr -> mark_position_exp(_semi_terminated_seq_expr) -## In state 2396, spurious reduction of production leading_bar_match_case_to_sequence_body -> pattern_with_bar EQUALGREATER semi_terminated_seq_expr -## In state 2400, spurious reduction of production leading_bar_match_cases_to_sequence_body -> leading_bar_match_case_to_sequence_body +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2389, spurious reduction of production post_item_attributes -> +## In state 2390, spurious reduction of production opt_semi -> +## In state 2395, spurious reduction of production _semi_terminated_seq_expr_row -> expr post_item_attributes opt_semi +## In state 2393, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr_row) -> _semi_terminated_seq_expr_row +## In state 2382, spurious reduction of production semi_terminated_seq_expr_row -> mark_position_exp(_semi_terminated_seq_expr_row) +## In state 2367, spurious reduction of production _semi_terminated_seq_expr -> semi_terminated_seq_expr_row +## In state 2394, spurious reduction of production mark_position_exp(_semi_terminated_seq_expr) -> _semi_terminated_seq_expr +## In state 2383, spurious reduction of production semi_terminated_seq_expr -> mark_position_exp(_semi_terminated_seq_expr) +## In state 2398, spurious reduction of production leading_bar_match_case_to_sequence_body -> pattern_with_bar EQUALGREATER semi_terminated_seq_expr +## In state 2402, spurious reduction of production leading_bar_match_cases_to_sequence_body -> leading_bar_match_case_to_sequence_body ## Expecting one of the following: @@ -11633,7 +11633,7 @@ Expecting one of the following: implementation: TRY UIDENT LBRACE BAR UNDERSCORE EQUALGREATER WITH ## -## Ends in an error in state: 2395. +## Ends in an error in state: 2397. ## ## leading_bar_match_case_to_sequence_body -> pattern_with_bar EQUALGREATER . semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11645,7 +11645,7 @@ Expecting the body of the matched pattern implementation: TRY UIDENT LBRACE BAR UNDERSCORE SEMI ## -## Ends in an error in state: 1101. +## Ends in an error in state: 1103. ## ## _or_pattern -> pattern . BAR pattern [ WHEN EQUALGREATER BAR ] ## pattern_with_bar -> BAR pattern . [ WHEN EQUALGREATER ] @@ -11657,7 +11657,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE SEMI ## 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 635, spurious reduction of production pattern -> pattern_without_or +## In state 636, spurious reduction of production pattern -> pattern_without_or ## Expecting one of the following: @@ -11667,7 +11667,7 @@ Expecting one of the following: implementation: TRY UIDENT LBRACE BAR UNDERSCORE WHEN UIDENT EQUALGREATER WITH ## -## Ends in an error in state: 2363. +## Ends in an error in state: 2365. ## ## leading_bar_match_case_to_sequence_body -> pattern_with_bar WHEN expr EQUALGREATER . semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11679,7 +11679,7 @@ Expecting a sequence item implementation: TRY UIDENT LBRACE BAR UNDERSCORE WHEN UIDENT SEMI ## -## Ends in an error in state: 2362. +## Ends in an error in state: 2364. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EQUALGREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER EQUALGREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -11714,21 +11714,21 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE WHEN UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## implementation: TRY UIDENT LBRACE BAR UNDERSCORE WHEN WITH ## -## Ends in an error in state: 2361. +## Ends in an error in state: 2363. ## ## leading_bar_match_case_to_sequence_body -> pattern_with_bar WHEN . expr EQUALGREATER semi_terminated_seq_expr [ RBRACE BAR ] ## @@ -11740,7 +11740,7 @@ implementation: TRY UIDENT LBRACE BAR UNDERSCORE WHEN WITH implementation: TRY UIDENT LBRACE WITH ## -## Ends in an error in state: 2670. +## Ends in an error in state: 2672. ## ## _expr -> TRY simple_expr LBRACE . leading_bar_match_cases_to_sequence_body RBRACE [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11752,7 +11752,7 @@ implementation: TRY UIDENT LBRACE WITH implementation: TRY UIDENT UNDERSCORE ## -## Ends in an error in state: 2667. +## Ends in an error in state: 2669. ## ## _expr -> TRY simple_expr . LBRACE leading_bar_match_cases_to_sequence_body RBRACE [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> TRY simple_expr . WITH error [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -11772,17 +11772,17 @@ implementation: TRY UIDENT UNDERSCORE ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 833, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 835, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) ## implementation: TRY UIDENT WITH WITH ## -## Ends in an error in state: 2668. +## Ends in an error in state: 2670. ## ## _expr -> TRY simple_expr WITH . error [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -11807,7 +11807,7 @@ implementation: TRY WITH implementation: TYPE LIDENT AND LIDENT WITH ## -## Ends in an error in state: 1873. +## Ends in an error in state: 1875. ## ## type_declaration_details -> LIDENT optional_type_parameters . type_kind constraints [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -11818,14 +11818,14 @@ implementation: TYPE LIDENT AND LIDENT WITH ## 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 1872, spurious reduction of production optional_type_parameters -> +## In state 1874, spurious reduction of production optional_type_parameters -> ## implementation: TYPE LIDENT AND WITH ## -## Ends in an error in state: 1867. +## Ends in an error in state: 1869. ## ## and_type_declaration -> AND . type_declaration_details post_item_attributes [ error SEMI RBRACKET RBRACE EOF AND ] ## @@ -11837,7 +11837,7 @@ implementation: TYPE LIDENT AND WITH implementation: TYPE LIDENT CONSTRAINT UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 1768. +## Ends in an error in state: 1770. ## ## constrain -> core_type EQUAL . core_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF CONSTRAINT AND ] ## @@ -11849,7 +11849,7 @@ implementation: TYPE LIDENT CONSTRAINT UNDERSCORE EQUAL WITH implementation: TYPE LIDENT CONSTRAINT UNDERSCORE WITH ## -## Ends in an error in state: 1767. +## Ends in an error in state: 1769. ## ## constrain -> core_type . EQUAL core_type [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF CONSTRAINT AND ] ## @@ -11860,19 +11860,19 @@ implementation: TYPE LIDENT CONSTRAINT UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## implementation: TYPE LIDENT CONSTRAINT WITH ## -## Ends in an error in state: 1766. +## Ends in an error in state: 1768. ## ## constraints -> constraints CONSTRAINT . constrain [ error WITH SEMI RPAREN RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EOF CONSTRAINT AND ] ## @@ -11884,7 +11884,7 @@ implementation: TYPE LIDENT CONSTRAINT WITH implementation: TYPE LIDENT EQUAL BAR UIDENT LBRACKETAT AND RBRACKET GREATER ## -## Ends in an error in state: 2618. +## Ends in an error in state: 2620. ## ## constructor_declarations -> constructor_declarations_leading_bar . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## constructor_declarations_leading_bar -> constructor_declarations_leading_bar . constructor_declaration_leading_bar [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT BAR AND ] @@ -11896,17 +11896,17 @@ implementation: TYPE LIDENT EQUAL BAR UIDENT LBRACKETAT AND RBRACKET GREATER ## 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 1316, spurious reduction of production attributes -> -## In state 1317, spurious reduction of production attributes -> attribute attributes -## In state 2603, spurious reduction of production constructor_declaration_leading_bar -> BAR UIDENT generalized_constructor_arguments attributes -## In state 2623, spurious reduction of production constructor_declarations_leading_bar -> constructor_declaration_leading_bar +## In state 1318, spurious reduction of production attributes -> +## In state 1319, spurious reduction of production attributes -> attribute attributes +## In state 2605, spurious reduction of production constructor_declaration_leading_bar -> BAR UIDENT generalized_constructor_arguments attributes +## In state 2625, spurious reduction of production constructor_declarations_leading_bar -> constructor_declaration_leading_bar ## implementation: TYPE LIDENT EQUAL DOTDOT AMPERSAND ## -## Ends in an error in state: 1875. +## Ends in an error in state: 1877. ## ## constraints -> constraints . CONSTRAINT constrain [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## type_declaration_details -> LIDENT optional_type_parameters type_kind constraints . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -11919,7 +11919,7 @@ implementation: TYPE LIDENT EQUAL DOTDOT AMPERSAND implementation: TYPE LIDENT EQUAL LBRACE LIDENT COLON UNDERSCORE WITH ## -## Ends in an error in state: 335. +## Ends in an error in state: 336. ## ## label_declarations -> label_declarations . COMMA label_declaration [ RBRACE COMMA ] ## object_record_type -> LBRACE label_declarations . opt_comma RBRACE [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -11931,18 +11931,18 @@ implementation: TYPE LIDENT EQUAL LBRACE LIDENT COLON UNDERSCORE WITH ## 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 284, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 293, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 287, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 289, spurious reduction of production _core_type -> core_type2 -## In state 301, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 288, spurious reduction of production core_type -> mark_position_typ2(_core_type) -## In state 1602, spurious reduction of production _poly_type -> core_type -## In state 1603, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type -## In state 1601, spurious reduction of production poly_type -> mark_position_typ(_poly_type) -## In state 2536, spurious reduction of production attributes -> -## In state 2537, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes -## In state 330, spurious reduction of production label_declarations -> label_declaration +## In state 285, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 294, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 288, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 290, spurious reduction of production _core_type -> core_type2 +## In state 302, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 289, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 1604, spurious reduction of production _poly_type -> core_type +## In state 1605, spurious reduction of production mark_position_typ(_poly_type) -> _poly_type +## In state 1603, spurious reduction of production poly_type -> mark_position_typ(_poly_type) +## In state 2538, spurious reduction of production attributes -> +## In state 2539, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes +## In state 331, spurious reduction of production label_declarations -> label_declaration ## Expecting one of the following: @@ -11951,7 +11951,7 @@ Expecting one of the following: implementation: TYPE LIDENT EQUAL LBRACE LIDENT COLON WITH ## -## Ends in an error in state: 2535. +## Ends in an error in state: 2537. ## ## label_declaration -> mutable_flag LIDENT attributes COLON . poly_type attributes [ RBRACE COMMA ] ## @@ -11963,7 +11963,7 @@ Expecting a type name describing this field implementation: TYPE LIDENT EQUAL LBRACE LIDENT WITH ## -## Ends in an error in state: 2534. +## Ends in an error in state: 2536. ## ## label_declaration -> mutable_flag LIDENT attributes . [ RBRACE COMMA ] ## label_declaration -> mutable_flag LIDENT attributes . COLON poly_type attributes [ RBRACE COMMA ] @@ -11997,7 +11997,7 @@ Expecting a type field definition in the form of: implementation: TYPE LIDENT EQUAL LBRACE WITH ## -## Ends in an error in state: 322. +## Ends in an error in state: 323. ## ## object_record_type -> LBRACE . RBRACE [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] ## object_record_type -> LBRACE . DOT RBRACE [ error WITH UNDERSCORE UIDENT SHARP SEMI RPAREN RBRACKET RBRACE QUOTE LPAREN LIDENT LBRACKETPERCENT LBRACKETLESS LBRACKETGREATER LBRACKETATAT LBRACKETAT LBRACKET LBRACE EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLON BARRBRACKET BAR AS AND ] @@ -12015,7 +12015,7 @@ Expecting at least one type field definition in the form of: implementation: TYPE LIDENT EQUAL LPAREN WITH ## -## Ends in an error in state: 2590. +## Ends in an error in state: 2592. ## ## _non_arrowed_simple_core_type -> LPAREN . core_type_comma_list RPAREN [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT AS AND ] ## _non_arrowed_simple_core_type -> LPAREN . MODULE package_type RPAREN [ error SEMI RBRACKET RBRACE LBRACKETATAT LBRACKETAT EQUALGREATER EQUAL EOF CONSTRAINT AS AND ] @@ -12029,7 +12029,7 @@ Expecting at least one type field definition in the form of: implementation: TYPE LIDENT EQUAL PRI WITH ## -## Ends in an error in state: 2589. +## Ends in an error in state: 2591. ## ## type_kind -> EQUAL PRI . core_type [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## type_kind -> EQUAL PRI . constructor_declarations [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12056,7 +12056,7 @@ implementation: TYPE LIDENT EQUAL UIDENT WITH implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL BAR WITH ## -## Ends in an error in state: 2600. +## Ends in an error in state: 2602. ## ## constructor_declaration_leading_bar -> BAR . UIDENT generalized_constructor_arguments attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT BAR AND ] ## constructor_declaration_leading_bar -> BAR . LPAREN RPAREN generalized_constructor_arguments attributes [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT BAR AND ] @@ -12072,7 +12072,7 @@ Variant constructors need to begin with an uppercase character implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL LBRACE LIDENT COLON LBRACE DOTDOT RBRACE AS QUOTE LIDENT LBRACKETAT AND RBRACKET SEMI ## -## Ends in an error in state: 2634. +## Ends in an error in state: 2636. ## ## label_declarations -> label_declarations . COMMA label_declaration [ RBRACE COMMA ] ## type_kind -> EQUAL core_type EQUAL private_flag LBRACE label_declarations . opt_comma RBRACE [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12084,17 +12084,17 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL LBRACE LIDENT COLON LBRACE DO ## 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 303, spurious reduction of production attributes -> -## In state 304, spurious reduction of production attributes -> attribute attributes -## In state 2537, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes -## In state 330, spurious reduction of production label_declarations -> label_declaration +## In state 304, spurious reduction of production attributes -> +## In state 305, spurious reduction of production attributes -> attribute attributes +## In state 2539, spurious reduction of production label_declaration -> mutable_flag LIDENT attributes COLON poly_type attributes +## In state 331, spurious reduction of production label_declarations -> label_declaration ## implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL LBRACE WITH ## -## Ends in an error in state: 2633. +## Ends in an error in state: 2635. ## ## type_kind -> EQUAL core_type EQUAL private_flag LBRACE . label_declarations opt_comma RBRACE [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## @@ -12106,7 +12106,7 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL LBRACE WITH implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL PRI BANG ## -## Ends in an error in state: 2628. +## Ends in an error in state: 2630. ## ## private_flag -> PRI . [ LBRACE ] ## type_kind -> EQUAL core_type EQUAL PRI . constructor_declarations [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12119,7 +12119,7 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL PRI BANG implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL UIDENT LBRACKETAT AND RBRACKET GREATER ## -## Ends in an error in state: 2621. +## Ends in an error in state: 2623. ## ## constructor_declarations -> constructor_declaration_no_leading_bar . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## constructor_declarations -> constructor_declaration_no_leading_bar . constructor_declarations_leading_bar [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12131,16 +12131,16 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL UIDENT LBRACKETAT AND RBRACKE ## 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 1316, spurious reduction of production attributes -> -## In state 1317, spurious reduction of production attributes -> attribute attributes -## In state 2585, spurious reduction of production constructor_declaration_no_leading_bar -> UIDENT generalized_constructor_arguments attributes +## In state 1318, spurious reduction of production attributes -> +## In state 1319, spurious reduction of production attributes -> attribute attributes +## In state 2587, spurious reduction of production constructor_declaration_no_leading_bar -> UIDENT generalized_constructor_arguments attributes ## implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL WITH ## -## Ends in an error in state: 2626. +## Ends in an error in state: 2628. ## ## type_kind -> EQUAL core_type EQUAL . constructor_declarations [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## type_kind -> EQUAL core_type EQUAL . PRI constructor_declarations [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12155,7 +12155,7 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE EQUAL WITH implementation: TYPE LIDENT EQUAL UNDERSCORE WITH ## -## Ends in an error in state: 2625. +## Ends in an error in state: 2627. ## ## type_kind -> EQUAL core_type . [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] ## type_kind -> EQUAL core_type . EQUAL constructor_declarations [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF CONSTRAINT AND ] @@ -12170,12 +12170,12 @@ implementation: TYPE LIDENT EQUAL UNDERSCORE WITH ## 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 355, spurious reduction of production _core_type2 -> non_arrowed_core_type -## In state 668, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 -## In state 662, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) -## In state 664, spurious reduction of production _core_type -> core_type2 -## In state 675, spurious reduction of production mark_position_typ2(_core_type) -> _core_type -## In state 663, spurious reduction of production core_type -> mark_position_typ2(_core_type) +## In state 356, spurious reduction of production _core_type2 -> non_arrowed_core_type +## In state 669, spurious reduction of production mark_position_typ2(_core_type2) -> _core_type2 +## In state 663, spurious reduction of production core_type2 -> mark_position_typ2(_core_type2) +## In state 665, spurious reduction of production _core_type -> core_type2 +## In state 676, spurious reduction of production mark_position_typ2(_core_type) -> _core_type +## In state 664, spurious reduction of production core_type -> mark_position_typ2(_core_type) ## @@ -12202,7 +12202,7 @@ implementation: TYPE LIDENT EQUAL WITH implementation: TYPE LIDENT LBRACKETATAT AND RBRACKET WITH ## -## Ends in an error in state: 1866. +## Ends in an error in state: 1868. ## ## _structure_item_without_item_extension_sugar -> many_type_declarations . [ error SEMI RBRACKET RBRACE EOF ] ## many_type_declarations -> many_type_declarations . and_type_declaration [ error SEMI RBRACKET RBRACE EOF AND ] @@ -12214,9 +12214,9 @@ implementation: TYPE LIDENT LBRACKETATAT AND RBRACKET WITH ## 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 1307, spurious reduction of production post_item_attributes -> -## In state 1308, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes -## In state 2644, spurious reduction of production many_type_declarations -> TYPE nonrec_flag type_declaration_details post_item_attributes +## In state 1309, spurious reduction of production post_item_attributes -> +## In state 1310, spurious reduction of production post_item_attributes -> item_attribute post_item_attributes +## In state 2646, spurious reduction of production many_type_declarations -> TYPE nonrec_flag type_declaration_details post_item_attributes ## @@ -12273,7 +12273,7 @@ implementation: TYPE LIDENT PLUS WITH implementation: TYPE LIDENT PLUSEQ BAR WITH ## -## Ends in an error in state: 2648. +## Ends in an error in state: 2650. ## ## str_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ private_flag opt_bar . str_extension_constructors post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -12285,7 +12285,7 @@ implementation: TYPE LIDENT PLUSEQ BAR WITH implementation: TYPE LIDENT PLUSEQ PRI BANG ## -## Ends in an error in state: 2647. +## Ends in an error in state: 2649. ## ## str_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ private_flag . opt_bar str_extension_constructors post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -12297,7 +12297,7 @@ implementation: TYPE LIDENT PLUSEQ PRI BANG implementation: TYPE LIDENT PLUSEQ UIDENT BAR WITH ## -## Ends in an error in state: 2650. +## Ends in an error in state: 2652. ## ## str_extension_constructors -> str_extension_constructors BAR . extension_constructor_declaration [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] ## str_extension_constructors -> str_extension_constructors BAR . extension_constructor_rebind [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF BAR ] @@ -12310,7 +12310,7 @@ implementation: TYPE LIDENT PLUSEQ UIDENT BAR WITH implementation: TYPE LIDENT PLUSEQ WITH ## -## Ends in an error in state: 2646. +## Ends in an error in state: 2648. ## ## str_type_extension -> TYPE nonrec_flag potentially_long_ident_and_optional_type_parameters PLUSEQ . private_flag opt_bar str_extension_constructors post_item_attributes [ error SEMI RBRACKET RBRACE EOF ] ## @@ -12334,7 +12334,7 @@ implementation: TYPE LIDENT QUOTE WITH implementation: TYPE LIDENT WITH ## -## Ends in an error in state: 2642. +## Ends in an error in state: 2644. ## ## potentially_long_ident_and_optional_type_parameters -> LIDENT optional_type_parameters . [ PLUSEQ ] ## type_declaration_details -> LIDENT optional_type_parameters . type_kind constraints [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] @@ -12346,7 +12346,7 @@ implementation: TYPE LIDENT WITH ## 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 2641, spurious reduction of production optional_type_parameters -> +## In state 2643, spurious reduction of production optional_type_parameters -> ## Expecting one of the following: @@ -12358,7 +12358,7 @@ Expecting one of the following: implementation: TYPE UIDENT DOT WITH ## -## Ends in an error in state: 2075. +## Ends in an error in state: 2077. ## ## mod_ext2 -> mod_ext_longident DOT . UIDENT LPAREN mod_ext_longident RPAREN [ LPAREN DOT ] ## mod_ext_longident -> mod_ext_longident DOT . UIDENT [ DOT ] @@ -12409,7 +12409,7 @@ implementation: TYPE WITH implementation: UIDENT AMPERAMPER WITH ## -## Ends in an error in state: 1042. +## Ends in an error in state: 1044. ## ## _expr -> expr AMPERAMPER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12421,7 +12421,7 @@ implementation: UIDENT AMPERAMPER WITH implementation: UIDENT AMPERSAND WITH ## -## Ends in an error in state: 1040. +## Ends in an error in state: 1042. ## ## _expr -> expr AMPERSAND . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12433,7 +12433,7 @@ implementation: UIDENT AMPERSAND WITH implementation: UIDENT BARBAR WITH ## -## Ends in an error in state: 1038. +## Ends in an error in state: 1040. ## ## _expr -> expr BARBAR . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12445,7 +12445,7 @@ implementation: UIDENT BARBAR WITH implementation: UIDENT COLONEQUAL WITH ## -## Ends in an error in state: 1044. +## Ends in an error in state: 1046. ## ## _expr -> expr COLONEQUAL . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12457,7 +12457,7 @@ implementation: UIDENT COLONEQUAL WITH implementation: UIDENT DOT LBRACE LIDENT WITH ## -## Ends in an error in state: 2168. +## Ends in an error in state: 2170. ## ## lbl_expr -> label_longident . COLON expr [ COMMA ] ## lbl_expr -> label_longident . [ COMMA ] @@ -12471,7 +12471,7 @@ implementation: UIDENT DOT LBRACE LIDENT WITH implementation: UIDENT DOT LBRACE WITH ## -## Ends in an error in state: 2148. +## Ends in an error in state: 2150. ## ## _simple_expr -> mod_longident DOT LBRACE . RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LBRACE . record_expr RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12485,7 +12485,7 @@ implementation: UIDENT DOT LBRACE WITH implementation: UIDENT DOT LBRACELESS WITH ## -## Ends in an error in state: 2143. +## Ends in an error in state: 2145. ## ## _simple_expr -> mod_longident DOT LBRACELESS . field_expr_list opt_comma GREATERRBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LBRACELESS . field_expr_list opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12498,7 +12498,7 @@ implementation: UIDENT DOT LBRACELESS WITH implementation: UIDENT DOT LBRACKET WITH ## -## Ends in an error in state: 2133. +## Ends in an error in state: 2135. ## ## _simple_expr -> mod_longident DOT LBRACKET . expr_comma_seq_extension [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -12510,7 +12510,7 @@ implementation: UIDENT DOT LBRACKET WITH implementation: UIDENT DOT LBRACKETBAR UIDENT RPAREN ## -## Ends in an error in state: 2127. +## Ends in an error in state: 2129. ## ## _simple_expr -> mod_longident DOT LBRACKETBAR expr_comma_seq . opt_comma BARRBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LBRACKETBAR expr_comma_seq . opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12523,23 +12523,23 @@ implementation: UIDENT DOT LBRACKETBAR UIDENT RPAREN ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1123, spurious reduction of production expr_optional_constraint -> expr -## In state 2126, spurious reduction of production expr_comma_seq -> expr_optional_constraint +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1125, spurious reduction of production expr_optional_constraint -> expr +## In state 2128, spurious reduction of production expr_comma_seq -> expr_optional_constraint ## implementation: UIDENT DOT LBRACKETBAR WITH ## -## Ends in an error in state: 2125. +## Ends in an error in state: 2127. ## ## _simple_expr -> mod_longident DOT LBRACKETBAR . expr_comma_seq opt_comma BARRBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LBRACKETBAR . expr_comma_seq opt_comma error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12552,7 +12552,7 @@ implementation: UIDENT DOT LBRACKETBAR WITH implementation: UIDENT DOT LPAREN MODULE UIDENT COLON UIDENT COLONGREATER ## -## Ends in an error in state: 2111. +## Ends in an error in state: 2113. ## ## _simple_expr -> mod_longident DOT LPAREN MODULE module_expr COLON package_type . RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -12564,7 +12564,7 @@ implementation: UIDENT DOT LPAREN MODULE UIDENT COLON UIDENT COLONGREATER ## 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 134, spurious reduction of production ident -> UIDENT -## In state 806, spurious reduction of production mty_longident -> ident +## In state 808, spurious reduction of production mty_longident -> ident ## In state 137, spurious reduction of production package_type -> mty_longident ## @@ -12572,7 +12572,7 @@ implementation: UIDENT DOT LPAREN MODULE UIDENT COLON UIDENT COLONGREATER implementation: UIDENT DOT LPAREN MODULE UIDENT COLON WITH ## -## Ends in an error in state: 2109. +## Ends in an error in state: 2111. ## ## _simple_expr -> mod_longident DOT LPAREN MODULE module_expr COLON . package_type RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LPAREN MODULE module_expr COLON . error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12585,7 +12585,7 @@ implementation: UIDENT DOT LPAREN MODULE UIDENT COLON WITH implementation: UIDENT DOT LPAREN MODULE UIDENT WITH ## -## Ends in an error in state: 2108. +## Ends in an error in state: 2110. ## ## _module_expr -> module_expr . simple_module_expr [ UIDENT LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] ## _module_expr -> module_expr . LPAREN module_expr error [ UIDENT LPAREN LBRACKETPERCENT LBRACKETAT LBRACE COLON ] @@ -12600,19 +12600,19 @@ implementation: UIDENT DOT LPAREN MODULE UIDENT WITH ## 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 808, spurious reduction of production _simple_module_expr -> mod_longident -## In state 812, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr -## In state 809, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) -## In state 790, spurious reduction of production _module_expr -> simple_module_expr -## In state 814, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr -## In state 813, spurious reduction of production module_expr -> mark_position_mod(_module_expr) +## In state 810, spurious reduction of production _simple_module_expr -> mod_longident +## In state 814, spurious reduction of production mark_position_mod(_simple_module_expr) -> _simple_module_expr +## In state 811, spurious reduction of production simple_module_expr -> mark_position_mod(_simple_module_expr) +## In state 791, spurious reduction of production _module_expr -> simple_module_expr +## In state 816, spurious reduction of production mark_position_mod(_module_expr) -> _module_expr +## In state 815, spurious reduction of production module_expr -> mark_position_mod(_module_expr) ## implementation: UIDENT DOT LPAREN MODULE WITH ## -## Ends in an error in state: 780. +## Ends in an error in state: 781. ## ## _simple_expr -> mod_longident DOT LPAREN MODULE . module_expr COLON package_type RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LPAREN MODULE . module_expr COLON error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12625,7 +12625,7 @@ implementation: UIDENT DOT LPAREN MODULE WITH implementation: UIDENT DOT LPAREN UIDENT SEMI ## -## Ends in an error in state: 2113. +## Ends in an error in state: 2115. ## ## expr_comma_list -> expr_optional_constraint . COMMA expr_optional_constraint [ RPAREN COMMA ] ## @@ -12636,22 +12636,22 @@ implementation: UIDENT DOT LPAREN UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 2122, spurious reduction of production expr_optional_constraint -> expr +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 2124, spurious reduction of production expr_optional_constraint -> expr ## implementation: UIDENT DOT LPAREN WITH ## -## Ends in an error in state: 779. +## Ends in an error in state: 780. ## ## _simple_expr -> mod_longident DOT LPAREN . expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT LPAREN . expr_comma_list RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12668,7 +12668,7 @@ implementation: UIDENT DOT LPAREN WITH implementation: UIDENT DOT WITH ## -## Ends in an error in state: 778. +## Ends in an error in state: 779. ## ## _simple_expr -> mod_longident DOT . LPAREN expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> mod_longident DOT . LPAREN expr_comma_list RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -12694,7 +12694,7 @@ implementation: UIDENT DOT WITH implementation: UIDENT GREATER WITH ## -## Ends in an error in state: 1034. +## Ends in an error in state: 1036. ## ## _expr -> expr GREATER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## _expr -> expr GREATER . GREATER expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] @@ -12707,7 +12707,7 @@ Expecting an expression implementation: UIDENT INFIXOP0 WITH ## -## Ends in an error in state: 1032. +## Ends in an error in state: 1034. ## ## _expr -> expr INFIXOP0 . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12719,7 +12719,7 @@ Expecting an expression implementation: UIDENT INFIXOP1 WITH ## -## Ends in an error in state: 1028. +## Ends in an error in state: 1030. ## ## _expr -> expr INFIXOP1 . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12731,7 +12731,7 @@ Expecting an expression implementation: UIDENT INFIXOP2 WITH ## -## Ends in an error in state: 1026. +## Ends in an error in state: 1028. ## ## _expr -> expr INFIXOP2 . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12743,7 +12743,7 @@ Expecting an expression implementation: UIDENT INFIXOP3 WITH ## -## Ends in an error in state: 1012. +## Ends in an error in state: 1014. ## ## _expr -> expr INFIXOP3 . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12755,7 +12755,7 @@ Expecting an expression implementation: UIDENT INFIXOP4 WITH ## -## Ends in an error in state: 906. +## Ends in an error in state: 908. ## ## _expr -> expr INFIXOP4 . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12767,7 +12767,7 @@ Expecting an expression implementation: UIDENT LBRACKETAT UNDERSCORE ## -## Ends in an error in state: 356. +## Ends in an error in state: 357. ## ## attribute -> LBRACKETAT . attr_id payload RBRACKET [ error WITH UIDENT STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LPAREN LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLONEQUAL COLONCOLON COLON BARRBRACKET BARBAR BAR AS AND AMPERSAND AMPERAMPER ] ## @@ -12779,7 +12779,7 @@ Expecting an attribute id implementation: UIDENT LBRACKETAT WITH UIDENT RBRACE ## -## Ends in an error in state: 2451. +## Ends in an error in state: 2453. ## ## attribute -> LBRACKETAT attr_id payload . RBRACKET [ error WITH UIDENT STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LPAREN LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETATAT LBRACKETAT LBRACE INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EQUALGREATER EQUAL EOF CONSTRAINT COMMA COLONGREATER COLONEQUAL COLONCOLON COLON BARRBRACKET BARBAR BAR AS AND AMPERSAND AMPERAMPER ] ## @@ -12790,30 +12790,30 @@ implementation: UIDENT LBRACKETAT WITH UIDENT RBRACE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item -## In state 1860, spurious reduction of production payload -> structure +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item +## In state 1862, spurious reduction of production payload -> structure ## Expecting "]" implementation: UIDENT LBRACKETATAT UNDERSCORE ## -## Ends in an error in state: 417. +## Ends in an error in state: 418. ## ## item_attribute -> LBRACKETATAT . attr_id payload RBRACKET [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -12825,7 +12825,7 @@ Expecting an attributed id implementation: UIDENT LBRACKETATAT WITH UIDENT RBRACE ## -## Ends in an error in state: 2448. +## Ends in an error in state: 2450. ## ## item_attribute -> LBRACKETATAT attr_id payload . RBRACKET [ error SEMI RBRACKET RBRACE LBRACKETATAT EOF AND ] ## @@ -12836,30 +12836,30 @@ implementation: UIDENT LBRACKETATAT WITH UIDENT RBRACE ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item -## In state 1860, spurious reduction of production payload -> structure +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item +## In state 1862, spurious reduction of production payload -> structure ## Expecting "]" implementation: UIDENT LESS WITH ## -## Ends in an error in state: 1030. +## Ends in an error in state: 1032. ## ## _expr -> expr LESS . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12871,7 +12871,7 @@ Expecting an expression implementation: UIDENT LESSDOTDOTGREATER WITH ## -## Ends in an error in state: 1024. +## Ends in an error in state: 1026. ## ## _expr -> expr LESSDOTDOTGREATER . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12920,7 +12920,7 @@ Expecting one of the following: implementation: UIDENT MINUS WITH ## -## Ends in an error in state: 1022. +## Ends in an error in state: 1024. ## ## _expr -> expr MINUS . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12932,7 +12932,7 @@ Expecting an expression implementation: UIDENT MINUSDOT WITH ## -## Ends in an error in state: 1020. +## Ends in an error in state: 1022. ## ## _expr -> expr MINUSDOT . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12944,7 +12944,7 @@ Expecting an expression implementation: UIDENT OR WITH ## -## Ends in an error in state: 1018. +## Ends in an error in state: 1020. ## ## _expr -> expr OR . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12956,7 +12956,7 @@ Expecting an expression implementation: UIDENT PERCENT WITH ## -## Ends in an error in state: 1010. +## Ends in an error in state: 1012. ## ## _expr -> expr PERCENT . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12968,7 +12968,7 @@ Expecting an expression implementation: UIDENT PLUS WITH ## -## Ends in an error in state: 1016. +## Ends in an error in state: 1018. ## ## _expr -> expr PLUS . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12980,7 +12980,7 @@ Expecting an expression implementation: UIDENT PLUSDOT WITH ## -## Ends in an error in state: 1014. +## Ends in an error in state: 1016. ## ## _expr -> expr PLUSDOT . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -12992,7 +12992,7 @@ Expecting an expression implementation: UIDENT PLUSEQ WITH ## -## Ends in an error in state: 1008. +## Ends in an error in state: 1010. ## ## _expr -> expr PLUSEQ . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -13004,7 +13004,7 @@ Expecting an expression implementation: UIDENT QUESTION UIDENT COLON WITH ## -## Ends in an error in state: 1006. +## Ends in an error in state: 1008. ## ## _expr -> expr QUESTION expr COLON . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -13016,7 +13016,7 @@ Expecting an expression implementation: UIDENT QUESTION UIDENT SEMI ## -## Ends in an error in state: 1005. +## Ends in an error in state: 1007. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL COLON BARBAR AMPERSAND AMPERAMPER ] @@ -13051,14 +13051,14 @@ implementation: UIDENT QUESTION UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## Expecting one of the following: @@ -13067,7 +13067,7 @@ Expecting one of the following: implementation: UIDENT QUESTION WITH ## -## Ends in an error in state: 921. +## Ends in an error in state: 923. ## ## _expr -> expr QUESTION . expr COLON expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -13079,7 +13079,7 @@ Expecting an expression implementation: UIDENT RBRACKET ## -## Ends in an error in state: 2679. +## Ends in an error in state: 2681. ## ## implementation -> structure . EOF [ # ] ## @@ -13090,29 +13090,29 @@ implementation: UIDENT RBRACKET ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) -## In state 1915, spurious reduction of production post_item_attributes -> -## In state 1916, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes -## In state 1917, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar -## In state 1864, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) -## In state 1730, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar -## In state 1918, spurious reduction of production mark_position_str(_structure_item) -> _structure_item -## In state 1865, spurious reduction of production structure_item -> mark_position_str(_structure_item) -## In state 1731, spurious reduction of production structure -> structure_item +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 1917, spurious reduction of production post_item_attributes -> +## In state 1918, spurious reduction of production _structure_item_without_item_extension_sugar -> expr post_item_attributes +## In state 1919, spurious reduction of production mark_position_str(_structure_item_without_item_extension_sugar) -> _structure_item_without_item_extension_sugar +## In state 1866, spurious reduction of production structure_item_without_item_extension_sugar -> mark_position_str(_structure_item_without_item_extension_sugar) +## In state 1732, spurious reduction of production _structure_item -> structure_item_without_item_extension_sugar +## In state 1920, spurious reduction of production mark_position_str(_structure_item) -> _structure_item +## In state 1867, spurious reduction of production structure_item -> mark_position_str(_structure_item) +## In state 1733, spurious reduction of production structure -> structure_item ## Invalid token implementation: UIDENT SEMI WITH ## -## Ends in an error in state: 2059. +## Ends in an error in state: 2061. ## ## structure -> structure_item SEMI . structure [ RBRACKET RBRACE EOF ] ## @@ -13124,7 +13124,7 @@ Expecting a structure item implementation: UIDENT SHARP WITH ## -## Ends in an error in state: 753. +## Ends in an error in state: 754. ## ## _simple_expr -> simple_expr SHARP . label [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -13136,7 +13136,7 @@ Expecting an identifier implementation: UIDENT STAR WITH ## -## Ends in an error in state: 904. +## Ends in an error in state: 906. ## ## _expr -> expr STAR . expr [ error STAR SLASHGREATER SEMI RPAREN RBRACKET RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETATAT LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER EOF COMMA COLONGREATER COLONEQUAL COLON BARRBRACKET BARBAR BAR AND AMPERSAND AMPERAMPER ] ## @@ -13148,7 +13148,7 @@ Expecting an expression implementation: UIDENT TRUE DOT LBRACE UIDENT SEMI ## -## Ends in an error in state: 2199. +## Ends in an error in state: 2201. ## ## _expr -> expr . INFIXOP0 expr [ STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ STAR SLASHGREATER RBRACE QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -13183,14 +13183,14 @@ implementation: UIDENT TRUE DOT LBRACE UIDENT SEMI ## 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 731, spurious reduction of production constr_longident -> mod_longident -## In state 951, spurious reduction of production _simple_expr -> constr_longident -## In state 835, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 823, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 860, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 925, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 960, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 924, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 732, spurious reduction of production constr_longident -> mod_longident +## In state 953, spurious reduction of production _simple_expr -> constr_longident +## In state 837, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 825, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 862, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 927, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 962, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 926, spurious reduction of production expr -> mark_position_exp(_expr) ## Expecting one of the following: @@ -13199,7 +13199,7 @@ Expecting one of the following: implementation: UIDENT TRUE DOT LBRACE WITH ## -## Ends in an error in state: 2198. +## Ends in an error in state: 2200. ## ## _simple_expr -> simple_expr DOT LBRACE . expr RBRACE [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## @@ -13211,7 +13211,7 @@ Expecting an expression implementation: UIDENT TRUE DOT LBRACKET UIDENT SEMI ## -## Ends in an error in state: 2196. +## Ends in an error in state: 2198. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RBRACKET QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -13247,14 +13247,14 @@ implementation: UIDENT TRUE DOT LBRACKET UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## Expecting one of the following: @@ -13263,7 +13263,7 @@ Expecting one of the following: implementation: UIDENT TRUE DOT LBRACKET WITH ## -## Ends in an error in state: 2195. +## Ends in an error in state: 2197. ## ## _simple_expr -> simple_expr DOT LBRACKET . expr RBRACKET [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT LBRACKET . expr error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -13276,7 +13276,7 @@ Expecting an expression implementation: UIDENT TRUE DOT LPAREN UIDENT SEMI ## -## Ends in an error in state: 2193. +## Ends in an error in state: 2195. ## ## _expr -> expr . INFIXOP0 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] ## _expr -> expr . INFIXOP1 expr [ error STAR SLASHGREATER RPAREN QUESTION PLUSEQ PLUSDOT PLUS PERCENT OR MINUSDOT MINUS LESSDOTDOTGREATER LESS LBRACKETAT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATER COLONEQUAL BARBAR AMPERSAND AMPERAMPER ] @@ -13312,14 +13312,14 @@ implementation: UIDENT TRUE DOT LPAREN UIDENT SEMI ## 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 777, spurious reduction of production constr_longident -> mod_longident -## In state 909, spurious reduction of production _simple_expr -> constr_longident -## In state 875, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr -## In state 865, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) -## In state 877, spurious reduction of production less_aggressive_simple_expression -> simple_expr -## In state 883, spurious reduction of production _expr -> less_aggressive_simple_expression -## In state 918, spurious reduction of production mark_position_exp(_expr) -> _expr -## In state 882, spurious reduction of production expr -> mark_position_exp(_expr) +## In state 778, spurious reduction of production constr_longident -> mod_longident +## In state 911, spurious reduction of production _simple_expr -> constr_longident +## In state 877, spurious reduction of production mark_position_exp(_simple_expr) -> _simple_expr +## In state 867, spurious reduction of production simple_expr -> mark_position_exp(_simple_expr) +## In state 879, spurious reduction of production less_aggressive_simple_expression -> simple_expr +## In state 885, spurious reduction of production _expr -> less_aggressive_simple_expression +## In state 920, spurious reduction of production mark_position_exp(_expr) -> _expr +## In state 884, spurious reduction of production expr -> mark_position_exp(_expr) ## Expecting one of the following: @@ -13328,7 +13328,7 @@ Expecting one of the following: implementation: UIDENT TRUE DOT LPAREN WITH ## -## Ends in an error in state: 749. +## Ends in an error in state: 750. ## ## _simple_expr -> simple_expr DOT LPAREN . expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT LPAREN . expr error [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] @@ -13341,7 +13341,7 @@ Expecting an expression implementation: UIDENT TRUE DOT WITH ## -## Ends in an error in state: 748. +## Ends in an error in state: 749. ## ## _simple_expr -> simple_expr DOT . label_longident [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] ## _simple_expr -> simple_expr DOT . LPAREN expr RPAREN [ error UIDENT TRUE STRING STAR SLASHGREATER SHARPOP SHARP SEMI RPAREN RBRACKET RBRACE QUESTION PREFIXOP PLUSEQ PLUSDOT PLUS PERCENT OR NEW NATIVEINT MINUSDOT MINUS LPAREN LIDENTCOLONCOLON LIDENT LESSIDENT LESSGREATER LESSDOTDOTGREATER LESS LBRACKETPERCENT LBRACKETLESS LBRACKETBAR LBRACKETATAT LBRACKETAT LBRACKET LBRACELESS LBRACE INT64 INT32 INT INFIXOP4 INFIXOP3 INFIXOP2 INFIXOP1 INFIXOP0 GREATERRBRACE GREATER FLOAT FALSE EOF ELSE DOT COMMA COLONGREATER COLONEQUAL COLONCOLONLIDENT COLONCOLON COLON CHAR BARRBRACKET BARBAR BAR BANG BACKQUOTE AS AND AMPERSAND AMPERAMPER ] diff --git a/src/reason_parser.mly b/src/reason_parser.mly index 229343680..be9db7cee 100644 --- a/src/reason_parser.mly +++ b/src/reason_parser.mly @@ -957,6 +957,7 @@ let only_labels l = %token PUB %token QUESTION %token OPTIONAL_NO_DEFAULT +%token POSTFIX %token QUOTE %token RBRACE %token RBRACKET @@ -2746,6 +2747,15 @@ _expr: { mkexp (Pexp_try($2, List.rev $4)) } | TRY simple_expr WITH error { syntax_error_exp (mklocation $startpos($4) $endpos($4)) "Invalid try with"} + | POSTFIX + { + let loc = mklocation $symbolstartpos $endpos in + let attribute = ({txt = "postfix"; loc = loc}, PStr []) in + let c, v = $1 in + let constructor_name = mknoloc(Lident c) in + let value = mkexp (Pexp_constant (Const_int v)) ~loc in + mkexp (Pexp_construct(constructor_name, Some value)) ~attrs:[attribute] ~loc + } | as_loc(constr_longident) simple_non_labeled_expr_list_as_tuple { if List.mem (string_of_longident $1.txt) diff --git a/src/reason_pprint_ast.ml b/src/reason_pprint_ast.ml index 05fa83e01..901151678 100644 --- a/src/reason_pprint_ast.ml +++ b/src/reason_pprint_ast.ml @@ -2269,6 +2269,27 @@ let recordRowIsPunned pld = && (List.length args) == 0) -> true | _ -> false) +let hasPostfixAttribute attrs = + List.exists + (function + | ({txt="postfix"; loc}, _) -> true + | _ -> false + ) + attrs + +let formatInfix x = + match x with + | {pexp_desc=Pexp_construct ({txt = Lident lbl}, Some {pexp_desc = Pexp_constant (Const_int b)});_} -> atom ((string_of_int b) ^ lbl); + | _ -> assert false + +let filterPostfixAttrs attrs = + List.filter + (function + | ({txt="postfix"; loc}, _) -> false + | _ -> true + ) + attrs + class printer ()= object(self:'self) val pipe = false val semi = false @@ -3374,8 +3395,11 @@ class printer ()= object(self:'self) the ends of functions, or simplify infix printings then append. *) if stdAttrs <> [] then let withoutVisibleAttrs = {x with pexp_attributes=(arityAttrs @ jsxAttrs)} in - let attributesAsList = (List.map self#attribute stdAttrs) in - let itms = match self#unparseExprRecurse withoutVisibleAttrs with + let attributesAsList = (List.map self#attribute (filterPostfixAttrs stdAttrs)) in + let itms = if hasPostfixAttribute stdAttrs then + [formatInfix x] + else + match self#unparseExprRecurse withoutVisibleAttrs with | SpecificInfixPrecedence ({reducePrecedence; shiftPrecedence}, itm) -> [formatPrecedence ~loc:x.pexp_loc itm] | FunctionApplication itms -> itms | PotentiallyLowPrecedence itm -> [formatPrecedence ~loc:x.pexp_loc itm]